File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -544,16 +544,19 @@ jobs:
544
544
# Postgres tends not to choke.
545
545
NUM_PARALLEL_PACKAGES=8
546
546
NUM_PARALLEL_TESTS=16
547
+ PACKAGES="./cli/... ./enterprise/cli/... ./agent/..."
547
548
elif [ "${{ runner.os }}" == "macOS" ]; then
548
549
# Our macOS runners have 8 cores. We set NUM_PARALLEL_TESTS to 16
549
550
# because the tests complete faster and Postgres doesn't choke. It seems
550
551
# that macOS's tmpfs is faster than the one on Windows.
551
552
NUM_PARALLEL_PACKAGES=8
552
553
NUM_PARALLEL_TESTS=16
554
+ PACKAGES="./cli/... ./enterprise/cli/... ./agent/..."
553
555
elif [ "${{ runner.os }}" == "Linux" ]; then
554
556
# Our Linux runners have 8 cores.
555
557
NUM_PARALLEL_PACKAGES=8
556
558
NUM_PARALLEL_TESTS=8
559
+ PACKAGES="./..."
557
560
fi
558
561
559
562
# by default, run tests with cache
@@ -577,7 +580,7 @@ jobs:
577
580
normalize_path_with_symlinks "$RUNNER_TEMP/sym" "$(dirname $(which terraform))"
578
581
579
582
DB=ci gotestsum $TEST_RETRIES \
580
- --format standard-quiet --packages "./..." \
583
+ --format standard-quiet --packages $PACKAGES \
581
584
-- -timeout=20m -v -p $NUM_PARALLEL_PACKAGES -parallel=$NUM_PARALLEL_TESTS $TESTCOUNT
582
585
583
586
- name : Upload Go Build Cache
You can’t perform that action at this time.
0 commit comments