Skip to content

Commit b2fed61

Browse files
authored
Cleanup (#4785)
1 parent 3fad5e1 commit b2fed61

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

.github/codecov.yml

Whitespace-only changes.

conftest.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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

3024
def 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

3730
def pytest_collection_modifyitems(items):

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ required_plugins = [
227227
"pytest-mock",
228228
"pytest-subtests",
229229
]
230-
norecursedirs = 'pybind11*'
231230
addopts = [
232231
"-nauto",
233232
"-vra",

tests/unit/test_solvers/test_idaklu_solver.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from tests import get_discretisation_for_testing
88

99

10-
@pytest.mark.cibw
1110
class TestIDAKLUSolver:
1211
def test_ida_roberts_klu(self):
1312
# this test implements a python version of the ida Roberts

0 commit comments

Comments
 (0)