mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 05:25:26 +02:00
chore: drop-apscheduler (#1152)
* rewrite interval timer * drop apscheduler * fix type annotations
This commit is contained in:
parent
4f55020a58
commit
045798e959
11 changed files with 117 additions and 220 deletions
3
tests/fixtures/fixture_admin.py
vendored
3
tests/fixtures/fixture_admin.py
vendored
|
@ -1,4 +1,3 @@
|
|||
import requests
|
||||
from pytest import fixture
|
||||
from starlette.testclient import TestClient
|
||||
|
||||
|
@ -7,7 +6,7 @@ from tests import utils
|
|||
|
||||
|
||||
@fixture(scope="session")
|
||||
def admin_token(api_client: requests, api_routes: utils.AppRoutes):
|
||||
def admin_token(api_client: TestClient, api_routes: utils.AppRoutes):
|
||||
settings = get_app_settings()
|
||||
|
||||
form_data = {"username": "changeme@email.com", "password": settings.DEFAULT_PASSWORD}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue