diff --git a/.circleci/config.yml b/.circleci/config.yml index 48d9d40ec83..7b8e6f3f985 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -277,7 +277,9 @@ jobs: command: pip install --user --progress-bar=off pytest pytest-mock - run: name: Run tests - command: pytest test/test_prototype_*.py + command: pytest --junitxml=test-results/junit.xml -v --durations 20 test/test_prototype_*.py + - store_test_results: + path: test-results binary_linux_wheel: <<: *binary_common diff --git a/.circleci/config.yml.in b/.circleci/config.yml.in index c243705fb11..52ac6b52201 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -277,7 +277,9 @@ jobs: command: pip install --user --progress-bar=off pytest pytest-mock - run: name: Run tests - command: pytest test/test_prototype_*.py + command: pytest --junitxml=test-results/junit.xml -v --durations 20 test/test_prototype_*.py + - store_test_results: + path: test-results binary_linux_wheel: <<: *binary_common