Skip to content

Commit ac628ce

Browse files
authored
Add support for pytest 8.4.0 (#3489)
* remove return statement in RXD test as pytest >=8.4 raises an error * fixes #3488
1 parent 3c8d430 commit ac628ce

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

nmodl_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pyyaml>=3.13,<=6.0.2
66
find_libpython<=0.4.0
77
sympy>=1.3,<=1.13.3
88
# dependencies for test
9-
pytest<=8.1.1
9+
pytest<=8.4.0
1010
pytest-cov
1111
numpy>=1.9.3,<=2.2.3
1212
scipy

packaging/python/test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytest<=8.1.1 # potential bug from 8.2.0 due to parallelism?
1+
pytest<=8.4.0
22
# for coverage
33
pytest-cov<=6.0.0
44
# for RXD test

test/rxd/test_savestate_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def test_savestate_rxd():
215215
return vecs, vecs_std_save
216216

217217
# run the test
218-
return test_savestate_rxd()
218+
test_savestate_rxd()
219219

220220

221221
if __name__ == "__main__":

0 commit comments

Comments
 (0)