diff --git a/.circleci/config.yml b/.circleci/config.yml index b4523e458..fa68404df 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,9 +44,10 @@ jobs: # Run pytest and generate JUnit XML report - run: - name: Run Pytest with JUnit report + name: Run tests in parallel command: | - python -m pytest --junitxml=test-results/junit.xml + # Split tests into separate workers + python -m pytest -n 50 --junitxml=test-results/junit.xml # Store test results - store_test_results: