Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """Integration tests configuration file.""" |
||
2 | |||
3 | # pylint: disable=unused-import |
||
4 | |||
5 | import datafiles |
||
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 | datafiles.settings.HOOKS_ENABLED = True |
||
13 |