replace satmachineadmin varieties with satmachineclient; update pyprojec.toml

This commit is contained in:
padreug 2025-06-22 09:56:18 +02:00
parent 5a09c76ba4
commit 9b04d1af6c
15 changed files with 115 additions and 151 deletions

View file

@ -1,11 +1,11 @@
import pytest
from fastapi import APIRouter
from .. import satmachineadmin_ext
from .. import satmachineclient_ext
# just import router and add it to a test router
@pytest.mark.asyncio
async def test_router():
router = APIRouter()
router.include_router(satmachineadmin_ext)
router.include_router(satmachineclient_ext)