Skip to content

Commit

Permalink
Restrict number of schedulers when running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesPiechota committed May 18, 2024
1 parent d61b4d1 commit 15fb9d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
RETRYABLE=0
set +e
set -x
erl $ERL_TEST_OPTS -noshell -name main-${NAMESPACE}@127.0.0.1 -setcookie ${{ matrix.core_test_mod }} -run ar tests "${{ matrix.core_test_mod }}" -s init stop 2>&1 | tee main.out
erl +S 8:8 $ERL_TEST_OPTS -noshell -name main-${NAMESPACE}@127.0.0.1 -setcookie ${{ matrix.core_test_mod }} -run ar tests "${{ matrix.core_test_mod }}" -s init stop 2>&1 | tee main.out
EXIT_CODE=${PIPESTATUS[0]}
set +x
set -e
Expand Down

0 comments on commit 15fb9d9

Please sign in to comment.