mirror of
https://github.com/simonw/datasette.git
synced 2026-05-27 20:36:17 +02: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
|