Skip to content

Commit

Permalink
Run pytest on Azure with increased verbosity (#1287)
Browse files Browse the repository at this point in the history
Run `pytest` with the `-v` option in Azure Pipelines. In some situations
might be good to know precisely which tests functions are being run and
with which combination of parameters in Azure Pipelines.
  • Loading branch information
santisoler committed Sep 21, 2023
1 parent b42d0d0 commit 875fc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .azure-pipelines/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
source "${HOME}/conda/etc/profile.d/conda.sh"
conda activate simpeg-test
export KMP_WARNINGS=0
pytest ${{ test }} --cov-config=.coveragerc --cov=SimPEG --cov-report=xml --cov-report=html -W ignore::DeprecationWarning
pytest ${{ test }} -v --cov-config=.coveragerc --cov=SimPEG --cov-report=xml --cov-report=html -W ignore::DeprecationWarning
displayName: 'Testing ${{ test }}'
- script: |
Expand Down

0 comments on commit 875fc32

Please sign in to comment.