mirror of
https://github.com/bspeice/metrik
synced 2024-11-04 22:48:11 -05:00
8 lines
142 B
Python
8 lines
142 B
Python
|
def pytest_configure(config):
|
||
|
import sys
|
||
|
sys._called_from_test = True
|
||
|
|
||
|
|
||
|
def pytest_unconfigure(config):
|
||
|
del sys._called_from_test
|