mirror of
https://github.com/bspeice/metrik
synced 2024-11-05 06:58:12 -05:00
10 lines
140 B
Python
10 lines
140 B
Python
import sys
|
|
|
|
|
|
def pytest_configure(config):
|
|
sys._called_from_test = True
|
|
|
|
|
|
def pytest_unconfigure(config):
|
|
del sys._called_from_test
|