File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 85
85
with :
86
86
micromamba : true
87
87
full-deps : ${{ matrix.full-deps }}
88
+ # disable GSD because it occasionally introduce hanging in testing #4209
89
+ gsd : ' '
88
90
# in most cases will just default to empty, i.e. pick up max version from other deps
89
91
numpy : ${{ matrix.numpy }}
90
92
extra-pip-deps : ${{ matrix.extra-pip-deps }}
@@ -113,7 +115,7 @@ jobs:
113
115
PYTEST_FLAGS="${PYTEST_FLAGS} --cov-config=.coveragerc --cov=MDAnalysis --cov-report=xml"
114
116
fi
115
117
echo $PYTEST_FLAGS
116
- pytest -n auto --timeout=200 testsuite/MDAnalysisTests $PYTEST_FLAGS
118
+ pytest -n logical --timeout=200 testsuite/MDAnalysisTests $PYTEST_FLAGS
117
119
118
120
- name : run_asv
119
121
if : contains(matrix.name, 'asv_check')
@@ -161,6 +163,7 @@ jobs:
161
163
with :
162
164
micromamba : true
163
165
full-deps : true
166
+ gsd : ' '
164
167
extra-pip-deps : " docutils sphinx-sitemap sphinxcontrib-bibtex pybtex pybtex-docutils"
165
168
extra-conda-deps : " mdanalysis-sphinx-theme>=1.3.0"
166
169
@@ -281,4 +284,4 @@ jobs:
281
284
282
285
- name : run tests
283
286
working-directory : ./dist
284
- run : python -m pytest --timeout=200 -n auto --pyargs MDAnalysisTests
287
+ run : python -m pytest --timeout=200 -n logical --pyargs MDAnalysisTests
Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ jobs:
105
105
biopython
106
106
"chemfiles>=0.10,<0.10.4"
107
107
duecredit
108
- "gsd>3.0.0"
109
108
joblib
110
109
GridDataFormats
111
110
mmtf-python
@@ -114,6 +113,8 @@ jobs:
114
113
pytng>=0.2.3
115
114
rdkit>=2020.03.1
116
115
tidynamics>=1.0.0
116
+ # remove from azure to avoid test hanging #4707
117
+ # "gsd>3.0.0"
117
118
displayName: 'Install additional dependencies for 64-bit tests'
118
119
condition: and(succeeded(), eq(variables['PYTHON_ARCH'], 'x64'))
119
120
- script : >-
@@ -128,7 +129,7 @@ jobs:
128
129
displayName : ' Check installed packages'
129
130
- powershell : |
130
131
cd testsuite
131
- pytest MDAnalysisTests --disable-pytest-warnings -n auto --timeout=200 -rsx --cov=MDAnalysis
132
+ pytest MDAnalysisTests --disable-pytest-warnings -n logical --timeout=200 -rsx --cov=MDAnalysis
132
133
displayName: 'Run MDAnalysis Test Suite'
133
134
- script : |
134
135
curl -s https://codecov.io/bash | bash
You can’t perform that action at this time.
0 commit comments