Skip to content

Commit

Permalink
Merge pull request #4434 from esl/maybe-select-suites-check
Browse files Browse the repository at this point in the history
Make check in `maybe_select_suites` more specific
  • Loading branch information
arcusfelis authored Dec 18, 2024
2 parents f813f94 + 5829caa commit d940bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ run_test_preset() {
}

maybe_select_suites() {
if command -v circleci; then
if command -v circleci >/dev/null 2>&1 && [[ "$CIRCLECI" == "true" ]]; then
circleci tests glob tests/*_SUITE.erl | \
circleci tests run --command=">selected_suites xargs -d' ' -I {} basename {} .erl"
escript ../tools/select_suites_to_run.erl $TESTSPEC $(<selected_suites)
Expand Down

0 comments on commit d940bea

Please sign in to comment.