-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
40 lines (27 loc) · 805 Bytes
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import pytest
from enternot_app import app as _app
from enternot_app import camera as _camera
from enternot_app import firebase as _firebase
from enternot_app import speakers as _speakers
@pytest.fixture(scope="session")
def app(request):
_app.config["DEBUG"] = True
_app.config["TESTING"] = True
# disable authentication for tests
_app.config["BASIC_AUTH_FORCE"] = False
# Establish an application context before running the tests.
ctx = _app.app_context()
ctx.push()
def teardown():
ctx.pop()
request.addfinalizer(teardown)
return _app
@pytest.fixture(scope="session")
def camera():
return _camera
@pytest.fixture(scope="session")
def firebase():
return _firebase
@pytest.fixture(scope="session")
def speakers():
return _speakers