Skip to content

Commit

Permalink
Disable parallel unit tests in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Protsiuk <[email protected]>
  • Loading branch information
aqstack authored and ctlong committed Oct 31, 2024
1 parent 9d12369 commit 9d72022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/subtests/unit-test
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

flags='-r --randomize-all --randomize-suites --fail-on-pending --keep-going --race --trace'
if [ "${CI:-false}" = 'true' ]; then
if [ "${CI:-false}" = 'false' ]; then
flags="${flags} -p"
fi
pushd "${SCRIPT_DIR}/../../src" > /dev/null
Expand Down

0 comments on commit 9d72022

Please sign in to comment.