diff --git a/.github/workflows/reuseable-main.yml b/.github/workflows/reuseable-main.yml index e3606f9ce..6b3d14299 100644 --- a/.github/workflows/reuseable-main.yml +++ b/.github/workflows/reuseable-main.yml @@ -81,12 +81,12 @@ jobs: if: ${{ inputs.run-unit-tests == 'true' }} run: | python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)" - python -m pytest -n auto --dist loadscope --cov=pygsti test/unit + python -m pytest -n auto --dist loadscope --cov=pygsti --durations=25 test/unit - name: Run test_packages if: ${{ inputs.run-extra-tests == 'true' }} run: | python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)" - python -m pytest -v -n auto --dist loadscope --ignore=test/test_packages/mpi --ignore=test/test_packages/notebooks test/test_packages + python -m pytest -v -n auto --dist loadscope --ignore=test/test_packages/mpi --ignore=test/test_packages/notebooks --durations=25 test/test_packages - name: Run notebook regression if: ${{ inputs.run-notebook-tests == 'true' }} run: | @@ -95,4 +95,4 @@ jobs: gcc -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)" - python -m pytest -n auto --nbval-lax --dist loadscope --nbval-current-env jupyter_notebooks \ No newline at end of file + python -m pytest -n auto --nbval-lax --dist loadscope --nbval-current-env --durations=25 jupyter_notebooks