Skip to content

Commit

Permalink
Fix CheckBuild job (scverse#2468)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Heumos <lukas.heumos@posteo.net>
  • Loading branch information
flying-sheep and Zethson committed Jun 19, 2023
1 parent 1a11280 commit a4d1893
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .azure-pipelines.yml
Expand Up @@ -59,12 +59,12 @@ jobs:
displayName: 'Display installed versions'
- script: |
pytest --color=yes --ignore=scanpy/tests/_images --nunit-xml="nunit/test-results.xml"
pytest -v --color=yes --ignore=scanpy/tests/_images --nunit-xml="nunit/test-results.xml"
displayName: 'PyTest'
condition: eq(variables['RUN_COVERAGE'], 'no')
- script: |
pytest --color=yes --ignore=scanpy/tests/_images --nunit-xml="nunit/test-results.xml" --cov=scanpy --cov-report=xml
pytest -v --color=yes --ignore=scanpy/tests/_images --nunit-xml="nunit/test-results.xml" --cov=scanpy --cov-report=xml
displayName: 'PyTest (coverage)'
condition: eq(variables['RUN_COVERAGE'], 'yes')
Expand All @@ -88,7 +88,7 @@ jobs:

- job: CheckBuild
pool:
vmImage: 'ubuntu-18.04'
vmImage: 'ubuntu-22.04'
steps:

- task: UsePythonVersion@0
Expand Down

0 comments on commit a4d1893

Please sign in to comment.