chore: remove nosetests from tests and docs (#1898)

fix #499
This commit is contained in:
Matthieu Darbois
2024-06-30 10:21:33 +02:00
committed by GitHub
parent 3179fd215a
commit 31de15bcd9
2 changed files with 4 additions and 10 deletions
+2 -2
View File
@@ -135,8 +135,8 @@ def test_failing_test(tmp_path):
project_dir,
output_dir=output_dir,
add_env={
"CIBW_TEST_REQUIRES": "nose",
"CIBW_TEST_COMMAND": "nosetests {project}/test",
"CIBW_TEST_REQUIRES": "pytest",
"CIBW_TEST_COMMAND": f"{utils.invoke_pytest()} {{project}}/test",
# manylinux1 has a version of bash that's been shown to have
# problems with this, so let's check that.
"CIBW_MANYLINUX_I686_IMAGE": "manylinux1",