Completed
Push — master ( 8ce081...b052b9 )
by Ronert
10:52
created

tests.app()   A

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4285
cc 1
1
"""Integration tests configuration file."""
2
import pytest
3
from cf_predict.test.conftest import pytest_configure  # pylint: disable=unused-import
4
from cf_predict import create_app
5
6
7
@pytest.fixture
8
def app():
9
    """Create a Flask test client."""
10
    app = create_app("integration_testing")
11
    return app
12