Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pool:
vmImage: 'VS2017-Win2016'
variables:
MPLBACKEND: agg
MPLBACKEND: agg
strategy:
maxParallel: 4
matrix:
Expand All @@ -42,6 +42,7 @@ jobs:
matplotlib
numpy
pytest
pytest-cov
pytest-xdist
scikit-learn
scipy
Expand All @@ -55,5 +56,9 @@ jobs:
displayName: 'Build MDAnalysis'
- powershell: |
cd testsuite
pytest .\MDAnalysisTests --disable-pytest-warnings -n 2 -rsx
pytest .\MDAnalysisTests --disable-pytest-warnings -n 2 -rsx --cov=MDAnalysis
displayName: 'Run MDAnalysis Test Suite'
- script: |
curl -s https://codecov.io/bash | bash
condition: succeeded()
displayName: 'Codecov Coverage Upload'