File tree Expand file tree Collapse file tree 2 files changed +13
-17
lines changed Expand file tree Collapse file tree 2 files changed +13
-17
lines changed Original file line number Diff line number Diff line change @@ -63,3 +63,15 @@ extend-ignore = [
63
63
64
64
[tool .ruff .pydocstyle ]
65
65
convention = " numpy"
66
+
67
+
68
+ [tool .pytest .ini_options ]
69
+ # Do not add src since it messes with the loading of pytask-parallel as a plugin.
70
+ testpaths = [" tests" ]
71
+ markers = [
72
+ " wip: Tests that are work-in-progress." ,
73
+ " unit: Flag for unit tests which target mainly a single function." ,
74
+ " integration: Flag for integration tests which may comprise of multiple unit tests." ,
75
+ " end_to_end: Flag for tests that cover the whole program." ,
76
+ ]
77
+ norecursedirs = [" .idea" , " .tox" ]
Original file line number Diff line number Diff line change @@ -9,25 +9,9 @@ conda_channels =
9
9
conda-forge
10
10
nodefaults
11
11
conda_deps =
12
- pytask <0.4
12
+ pytask =0.3
13
13
pytest
14
14
pytest-cov
15
15
pytest-xdist
16
16
commands =
17
17
pytest {posargs}
18
-
19
- [pytest]
20
- addopts = --doctest-modules
21
- filterwarnings =
22
- ignore: the imp module is deprecated in favour of importlib
23
- ignore: Using or importing the ABCs from ' collections' instead of
24
- ignore: The (parser|symbol) module is deprecated and will be removed in future
25
- junit_family = xunit2
26
- markers =
27
- wip: Tests that are work-in-progress.
28
- unit: Flag for unit tests which target mainly a single function.
29
- integration: Flag for integration tests which may comprise of multiple unit tests.
30
- end_to_end: Flag for tests that cover the whole program.
31
- norecursedirs =
32
- .idea
33
- .tox
You can’t perform that action at this time.
0 commit comments