33 lines
868 B
Python
33 lines
868 B
Python
"""Conftest."""
|
|
import os
|
|
|
|
import pytest
|
|
from flask.app import Flask
|
|
|
|
|
|
# We need to call this before importing spiffworkflow_backend
|
|
# otherwise typeguard cannot work. hence the noqa: E402
|
|
if os.environ.get("RUN_TYPEGUARD") == "true":
|
|
from typeguard.importhook import install_import_hook
|
|
|
|
install_import_hook(packages="spiffworkflow_backend")
|
|
|
|
|
|
from spiffworkflow_backend import create_app # noqa: E402
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def app() -> Flask:
|
|
"""App."""
|
|
os.environ["FLASK_ENV"] = "testing"
|
|
app = create_app()
|
|
|
|
# NOTE: set this here since nox shoves tests and src code to
|
|
# different places and this allows us to know exactly where we are at the start
|
|
app.config["BPMN_SPEC_ABSOLUTE_DIR"] = (
|
|
os.path.join(os.path.dirname(__file__))
|
|
+ "/tests/spiffworkflow_backend/files/bpmn_specs"
|
|
)
|
|
|
|
return app
|