Skip to content

Commit 3aa0dd5

Browse files
committed
added xmltodict (for rs2d.py), pytest-xdist for parallel testing, and python 3.8 with compatible numpy versions
1 parent 73fb763 commit 3aa0dd5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

noxfile.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import nox
22

33
PYTHON_NUMPY_MATRIX = {
4+
"3.8": ["1.23", "1.24"],
45
"3.9": ["1.24", "1.25", "1.26", "2.0"],
56
"3.10": ["1.24", "1.25", "1.26", "2.0", "2.1", "2.2"],
67
"3.11": ["1.24", "1.25", "1.26", "2.0", "2.1", "2.2", "2.3"],
@@ -11,7 +12,7 @@
1112

1213
ALL_NUMPY_VERSIONS = tuple(set(sum(PYTHON_NUMPY_MATRIX.values(), [])))
1314

14-
DEPENDENCIES = ["pytest", "pluggy", "scipy"]
15+
DEPENDENCIES = ["pytest", "pytest-xdist", "pluggy", "scipy", "xmltodict"]
1516

1617
@nox.session(python=list(PYTHON_NUMPY_MATRIX.keys()))
1718
@nox.parametrize("numpy_version", ALL_NUMPY_VERSIONS)
@@ -38,4 +39,4 @@ def tests(session: nox.Session, numpy_version):
3839
"pytest",
3940
"--ignore=nmrglue/util/xcpy_test.py",
4041
*session.posargs
41-
)
42+
)

0 commit comments

Comments
 (0)