We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent add6131 commit 2b81dafCopy full SHA for 2b81daf
api/tests/conftest.py
@@ -1,9 +1,13 @@
1
import pytest
2
+import os
3
4
import api.security
5
from app import run
6
import app as _app
7
8
+os.environ['API_BASE_URL'] = '3.12.0=https://example.com,3.10.0=https://example.com'
9
+os.environ['API_VERSION'] = '3.12.0,3.10.0'
10
+
11
@pytest.fixture(autouse=True)
12
def mock_cognito_variables(mocker):
13
mocker.patch.object(_app, 'CLIENT_ID', 'client-id')
0 commit comments