forked from scikit-learn-contrib/imbalanced-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
23 lines (19 loc) · 798 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
# This file is here so that when running from the root folder
# ./imblearn is added to sys.path by pytest.
# See https://docs.pytest.org/en/latest/pythonpath.html for more details.
# For example, this allows to build extensions in place and run pytest
# doc/modules/clustering.rst and use imblearn from the local folder
# rather than the one from site-packages.
import os
import pytest
def pytest_runtest_setup(item):
fname = item.fspath.strpath
if (
fname.endswith(os.path.join("keras", "_generator.py"))
or fname.endswith(os.path.join("tensorflow", "_generator.py"))
or fname.endswith("miscellaneous.rst")
):
try:
import tensorflow # noqa
except ImportError:
pytest.skip("The tensorflow package is not installed.")