Passed
Push — develop ( 4d6495...2dddb7 )
by Jace
03:19
created

tests.conftest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
1
"""Integration tests configuration file."""
2
3
# pylint: disable=unused-import
4
5
import yorm
6
7
from gitman.tests.conftest import pytest_configure
8
9
10
def pytest_runtest_setup(item):  # pylint: disable=unused-argument
11
    """Ensure files are created for integration tests."""
12
    yorm.settings.fake = False
13