mirror of
https://github.com/simonw/datasette.git
synced 2026-06-08 18:16:59 +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
|