feat(testing): init pytest fixtures
current_test fixture allows to retrieve the current test context, that is exposed through the shell environment
This commit is contained in:
parent
c579ddd022
commit
644beb8696
6 changed files with 51 additions and 2 deletions
5
tests/integration/conftest.py
Normal file
5
tests/integration/conftest.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
def pytest_configure(config):
|
||||
# register an additional marker
|
||||
config.addinivalue_line(
|
||||
"markers", "pytest: test pytest integration"
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue