15 lines
241 B
Python
15 lines
241 B
Python
# Library imports
|
|
import pytest
|
|
|
|
####
|
|
# Global fixtures
|
|
####
|
|
|
|
# App client for testing
|
|
@pytest.fixture(scope='module')
|
|
def client():
|
|
app = create_app(config_class='tests/testing_config.py')
|
|
with app.app_context():
|
|
yield app
|
|
|