tests: move testing stuff into its own directory
This commit is contained in:
parent
6029184f22
commit
9098ed05f1
4 changed files with 12 additions and 6 deletions
11
testing/conftest.py
Normal file
11
testing/conftest.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from pytest import Config
|
||||
|
||||
|
||||
def pytest_configure(config: Config):
|
||||
"""
|
||||
Registers a new mark 'final' that can be applied to tests.
|
||||
|
||||
I did not want to add these in pyproject.toml.
|
||||
"""
|
||||
|
||||
config.addinivalue_line("markers", "final: the final test")
|
||||
Loading…
Add table
Add a link
Reference in a new issue