Files
authentik/client-packages/sentry-auth-passbook/conftest.py
Jens Langhammer 3626fa4b98 add sentry client
2019-03-12 17:18:08 +01:00

15 lines
266 B
Python

from __future__ import absolute_import
# Run tests against sqlite for simplicity
import os
import os.path
import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__)))
os.environ.setdefault('DB', 'sqlite')
pytest_plugins = [
'sentry.utils.pytest'
]