Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
pytest -sv --reruns 3 --cov-append --cov=. --cov-report xml \
--html=integration-test-report.html --self-contained-html \
--junit-xml=test-results.xml \
-n 8 --dist loadscope \
-n 4 --dist loadscope \
$(cat failed_tests.txt | tr '\n' ' ')
else
echo "::notice::First attempt or no previous failures - running full integration test suite"
Expand All @@ -220,7 +220,7 @@ jobs:
pytest -sv --reruns 3 --cov-append --cov=. --cov-report xml \
--html=integration-test-report.html --self-contained-html \
--junit-xml=test-results.xml \
tests/integration -n 8 $IGNORE_FLAGS --dist loadscope
tests/integration -n 4 $IGNORE_FLAGS --dist loadscope
fi

# Execute the CLI tests in a non-dist way because they were causing some test instability when being run concurrently
Expand Down
Loading