forked from sktime/sktime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
59 lines (50 loc) · 2.34 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""Main configuration file for pytest.
Contents:
adds the following options to pytest
--matrixdesign : bool, default False
allows to turn on/off the sub-sampling in the tests (for shorter runtime)
"on" condition is partition/block design to ensure each estimator full tests are run
on each operating system at least once, and on each python version at least once,
but not necessarily on each operating system / python version combination
--only_cython_estimators : bool, default False
"on" = runs tests only for estimators that require cython to run
i.e., estimators with tag requires_cython=True
"off" = runs tests for all estimators that do not require cython to run
--only_changed_modules : bool, default False
turns on/off differential testing (for shorter runtime)
"on" condition ensures that only estimators are tested that have changed,
more precisely, only estimators whose class is in a module
that has changed compared to the main branch
"off" = runs tests for all estimators
by default, all options are off, including for default local runs of pytest
if multiple options are turned on, they are combined with AND,
i.e., intersection of estimators satisfying the conditions
"""
# copyright: sktime developers, BSD-3-Clause License (see LICENSE file)
__author__ = ["fkiraly"]
def pytest_addoption(parser):
"""Pytest command line parser options adder."""
parser.addoption(
"--matrixdesign",
default=False,
help="sub-sample estimators in tests by os/version matrix partition design",
)
parser.addoption(
"--only_cython_estimators",
default=False,
help="test only cython estimators, with tag requires_cython=True",
)
parser.addoption(
"--only_changed_modules",
default=False,
help="test only estimators from modules that have changed compared to main",
)
def pytest_configure(config):
"""Pytest configuration preamble."""
from sktime.tests import test_all_estimators
if config.getoption("--matrixdesign") in [True, "True"]:
test_all_estimators.MATRIXDESIGN = True
if config.getoption("--only_cython_estimators") in [True, "True"]:
test_all_estimators.CYTHON_ESTIMATORS = True
if config.getoption("--only_changed_modules") in [True, "True"]:
test_all_estimators.ONLY_CHANGED_MODULES = True