Skip to content

Commit 61e2871

Browse files
committed
Added missing pytest marks.
1 parent 0991191 commit 61e2871

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(
22
'scipy_dae',
3-
version: '0.0.9',
3+
version: '0.1.0',
44
meson_version: '>= 1.1.0',
55
)
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["meson-python>=0.16.0"]
44

55
[project]
66
name = "scipy_dae"
7-
version = "0.0.9"
7+
version = "0.1.0"
88
authors = [
99
{ name="Jonas Breuling", email="[email protected]" },
1010
]

pytest.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[pytest]
22
markers =
3-
slow: marks tests as slow (deselect with '-m "not slow"')
3+
slow: Tests that are very slow (from scipy)
4+
thread_unsafe: mark the test function as single-threaded (from scipy)
5+
fail_slow: mark a test for a non-default timeout failure (from scipy)
46
serial

0 commit comments

Comments
 (0)