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