Skip to content

Commit

Permalink
Fix CheckBuild job (#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 Apr 12, 2023
1 parent 554b226 commit aefac50
Show file tree
Hide file tree
Showing 2 changed files with 5 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
2 changes: 2 additions & 0 deletions docs/release-notes/1.10.0.md
Expand Up @@ -10,6 +10,8 @@
```

* Updated {func}`~scanpy.pp.read_visium` such that it can read spaceranger 2.0 files {smaller}`L Lehner`
* Fix {func}`~scanpy.pp.normalize_total` {pr}`2466` {smaller}`P Angerer`
* Fix testing package build {pr}`2468` {smaller}`P Angerer`


```{rubric} Ecosystem
Expand Down

0 comments on commit aefac50

Please sign in to comment.