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