tests.conftest   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 0
1
"""Integration tests configuration file."""
2
3
from __future__ import (
4
    division,
5
    absolute_import,
6
    with_statement,
7
    print_function,
8
    unicode_literals,
9
    nested_scopes,
10
    generators
11
)
12
13
from NiaPy.tests.conftest import pytest_configure
14
15
__all__ = ["pytest_configure"]
16