mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
10 lines
159 B
Python
10 lines
159 B
Python
def pytest_configure(config):
|
|
import sys
|
|
|
|
sys._called_from_test = True
|
|
|
|
|
|
def pytest_unconfigure(config):
|
|
import sys
|
|
|
|
del sys._called_from_test
|