forked from CESM-Development/cime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conftest.py
36 lines (22 loc) · 947 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
import os
import sys
CIMEROOT = os.path.abspath(os.path.join(os.path.dirname(__file__)))
sys.path.insert(0, CIMEROOT)
import pytest
from CIME import utils
from CIME.tests import scripts_regression_tests
os.environ["CIME_GLOBAL_WALLTIME"] = "0:05:00"
def pytest_addoption(parser):
# set addoption as add_argument to use common argument setup
# pytest's addoption has same signature as add_argument
setattr(parser, "add_argument", parser.addoption)
scripts_regression_tests.setup_arguments(parser)
# verbose and debug flags already exist
parser.addoption("--silent", action="store_true", help="Disable all logging")
def pytest_configure(config):
kwargs = vars(config.option)
utils.configure_logging(kwargs["verbose"], kwargs["debug"], kwargs["silent"])
scripts_regression_tests.configure_tests(**kwargs)
@pytest.fixture(scope="session", autouse=True)
def setup(pytestconfig):
os.chdir(CIMEROOT)