diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 45ab4ce47..8ae68378d 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -4,7 +4,7 @@ trigger: variables: PIP_CACHE_DIR: $(Pipeline.Workspace)/.pip RUN_COVERAGE: no - PYTEST_ADDOPTS: --color=yes --nunit-xml=test-data/test-results.xml + PYTEST_ADDOPTS: --color=yes --junitxml=test-data/test-results.xml PRERELEASE_DEPENDENCIES: no jobs: @@ -72,7 +72,7 @@ jobs: condition: succeededOrFailed() inputs: testResultsFiles: "test-data/test-results.xml" - testResultsFormat: NUnit + testResultsFormat: JUnit testRunTitle: "Publish test results for Python $(python.version)" - script: bash <(curl -s https://codecov.io/bash) diff --git a/pyproject.toml b/pyproject.toml index d2bfe98d3..d10eddd85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,6 @@ test = [ "loompy>=3.0.5", "pytest>=6.0", "pytest-cov>=2.10", - "pytest-nunit", "zarr", "matplotlib", "scikit-learn",