-
Notifications
You must be signed in to change notification settings - Fork 121
/
conftest.py
78 lines (61 loc) · 2.5 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""Main configuration file for pytest.
Contents:
Adds a --prtesting option to pytest.
This allows for smaller parameter matrices to be used for certain tests and enables
sub-sampling in the tests (for shorter runtime) ensuring that each estimators 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.
"""
__maintainer__ = ["MatthewMiddlehurst"]
def pytest_addoption(parser):
"""Pytest command line parser options adder."""
parser.addoption(
"--nonumba",
default=False,
help=("Disable numba via the NUMBA_DISABLE_JIT environment variable."),
)
parser.addoption(
"--enablethreading",
default=False,
help=(
"Allow threading and skip setting number of threads to 1 for various "
"libraries and environment variables."
),
)
parser.addoption(
"--prtesting",
default=False,
help=(
"Toggle for PR test configuration. Uses smaller parameter matrices for "
"test generation and sub-samples estimators in tests by workflow os/py "
"version."
),
)
def pytest_configure(config):
"""Pytest configuration preamble."""
import os
if config.getoption("--nonumba") in [True, "True", "true"]:
os.environ["NUMBA_DISABLE_JIT"] = "1"
if not config.getoption("--enablethreading") in [True, "True", "true"]:
# Must be called before any numpy imports
os.environ["MKL_NUM_THREADS"] = "1"
os.environ["NUMEXPR_NUM_THREADS"] = "1"
os.environ["OMP_NUM_THREADS"] = "1"
os.environ["OPENBLAS_NUM_THREADS"] = "1"
os.environ["VECLIB_MAXIMUM_THREADS"] = "1"
import numba
numba.set_num_threads(1)
from aeon.utils.validation._dependencies import _check_soft_dependencies
if _check_soft_dependencies("tensorflow", severity="none"):
from tensorflow.config.threading import (
set_inter_op_parallelism_threads,
set_intra_op_parallelism_threads,
)
set_inter_op_parallelism_threads(1)
set_intra_op_parallelism_threads(1)
if _check_soft_dependencies("torch", severity="none"):
import torch
torch.set_num_threads(1)
if config.getoption("--prtesting") in [True, "True", "true"]:
from aeon.testing import testing_config
testing_config.PR_TESTING = True