forked from dask/distributed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
42 lines (31 loc) · 1.14 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
# https://pytest.org/latest/example/simple.html#control-skipping-of-tests-according-to-command-line-option
from __future__ import annotations
import pytest
# Uncomment to enable more logging and checks
# (https://docs.python.org/3/library/asyncio-dev.html)
# Note this makes things slower and might consume much memory.
# os.environ["PYTHONASYNCIODEBUG"] = "1"
try:
import faulthandler
except ImportError:
pass
else:
try:
faulthandler.enable()
except Exception:
pass
# Make all fixtures available
from distributed.utils_test import * # noqa
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)
if "ws" in item.fixturenames:
item.add_marker(pytest.mark.workerstate)
pytest_plugins = ["distributed.pytest_resourceleaks"]