From 1a0d144e0359c425f71dcb30ccb3ee92908d9f7f Mon Sep 17 00:00:00 2001 From: hay-kot Date: Sun, 21 Mar 2021 17:19:08 -0800 Subject: [PATCH] test failing tests --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 7c1dc5147..9e4f208aa 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -42,7 +42,7 @@ def test_image(): return TEST_DATA.joinpath("test_image.jpg") -@fixture(scope="session") +@fixture(scope="function") def token(api_client: requests): form_data = {"username": "changeme@email.com", "password": "MyPassword"} response = api_client.post(TOKEN_URL, form_data)