Ansible schedule form: structured playbook-variable fields + first-item dropdown defaults #2

Merged
bvandeusen merged 126 commits from dev into main 2026-06-30 23:44:04 -04:00
Showing only changes of commit 67a1bc740d - Show all commits
+4 -2
View File
@@ -20,9 +20,11 @@ _NEEDS_DB = pytest.mark.skipif(
def _make_app():
# create_app is synchronous and runs its own internal asyncio.run for
# settings/migrations — call it directly (matching the other integration
# tests); wrapping it in asyncio.run nests event loops and fails.
from steward.app import create_app
import asyncio
return asyncio.run(create_app(testing=False))
return create_app(testing=False)
@_NEEDS_DB