Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Restore parallelization
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Jun 3, 2022
1 parent 8db6e6c commit 1d68080
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,16 @@ jobs:
command: ./scripts/compile_contracts.sh
- run:
name: Run pytest tests
# parallel: true
parallel: true
command: |
poetry run pytest -s -vv
# TESTFILES=$(
# circleci tests glob test/test*.py |
# circleci tests split --split-by=timings --timings-type=classname
# )
# mkdir -p test-results
# poetry run pytest -s --junitxml=test-results/junit.xml -vv $TESTFILES
# - store_test_results:
# path: test-results
TESTFILES=$(
circleci tests glob test/test*.py |
circleci tests split --split-by=timings --timings-type=classname
)
mkdir -p test-results
poetry run pytest -s --junitxml=test-results/junit.xml -vv $TESTFILES
- store_test_results:
path: test-results

test-py-max:
<<: *test-template
Expand Down

0 comments on commit 1d68080

Please sign in to comment.