1
0
Fork 0
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:
Hayden 2022-04-10 18:13:38 -08:00 committed by GitHub
parent 4f55020a58
commit 045798e959
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 117 additions and 220 deletions

View file

@ -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}