mirror of
https://github.com/sartography/spiffworkflow-backend.git
synced 2025-02-23 04:48:09 +00:00
12 lines
175 B
Python
12 lines
175 B
Python
"""Conftest."""
|
|
import pytest
|
|
|
|
from spiff_workflow_webapp import create_app
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def app():
|
|
"""App."""
|
|
app = create_app()
|
|
return app
|