-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconftest.py
40 lines (29 loc) · 1003 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 jinja2
import multiprocessing
import os
import pytest
import flash
@pytest.fixture(scope='session')
def app():
multiprocessing.set_start_method('fork')
return flash.app
@pytest.fixture
def chrome_options(chrome_options):
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
return chrome_options
def pytest_addoption(parser):
parser.addoption('--runslow', action='store_true', help='run slow tests')
def pytest_collection_modifyitems(config, items):
if config.getoption('--runslow'):
# --runslow given in cli: do not skip slow tests
return
skip_slow = pytest.mark.skip(reason='need --runslow option to run')
for item in items:
if 'slow' in item.keywords:
item.add_marker(skip_slow)
@pytest.fixture
def jinja():
here = os.path.dirname(__file__)
template_path = '{}/flash/templates'.format(here)
return jinja2.Environment(loader=jinja2.FileSystemLoader(template_path))