Skip to content

Commit

Permalink
Fix conftest ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
clayoster committed Sep 16, 2024
1 parent 19f4764 commit 378039f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import pytest
import os

# Set Environment Variables
os.environ["AUTH_USER"] = "testuser"
os.environ["AUTH_PASS"] = "testpass"

import pytest
import os
from app import app as flask_app

@pytest.fixture
Expand Down

0 comments on commit 378039f

Please sign in to comment.