File tree Expand file tree Collapse file tree 4 files changed +0
-9
lines changed
Expand file tree Collapse file tree 4 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,12 @@ def pytest_addoption(parser):
1919 default = False ,
2020 help = "run integration tests" ,
2121 )
22- parser .addoption (
23- "--cibw" ,
24- action = "store_true" ,
25- default = False ,
26- help = "test build wheels" ,
27- )
2822
2923
3024def pytest_configure (config ):
3125 config .addinivalue_line ("markers" , "scripts: mark test as an example script" )
3226 config .addinivalue_line ("markers" , "unit: mark test as a unit test" )
3327 config .addinivalue_line ("markers" , "integration: mark test as an integration test" )
34- config .addinivalue_line ("markers" , "cibw: mark test as build wheel test" )
3528
3629
3730def pytest_collection_modifyitems (items ):
Original file line number Diff line number Diff line change @@ -227,7 +227,6 @@ required_plugins = [
227227 " pytest-mock" ,
228228 " pytest-subtests" ,
229229]
230- norecursedirs = ' pybind11*'
231230addopts = [
232231 " -nauto" ,
233232 " -vra" ,
Original file line number Diff line number Diff line change 77from tests import get_discretisation_for_testing
88
99
10- @pytest .mark .cibw
1110class TestIDAKLUSolver :
1211 def test_ida_roberts_klu (self ):
1312 # this test implements a python version of the ida Roberts
You can’t perform that action at this time.
0 commit comments