Skip to content

Commit

Permalink
ci: disable parallel unit tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
acosta11 authored and ctlong committed Nov 6, 2024
1 parent 34649ff commit 2a53f51
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/subtests/unit-test
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ 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}" = 'false' ]; then
flags="${flags} -p"
fi

pushd "${SCRIPT_DIR}/../../src" > /dev/null
go run github.com/onsi/ginkgo/v2/ginkgo -r -p --randomize-all --randomize-suites --fail-on-pending --keep-going --race --trace
go run github.com/onsi/ginkgo/v2/ginkgo $flags
popd > /dev/null

0 comments on commit 2a53f51

Please sign in to comment.