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 964ee33 commit b9ae46cCopy full SHA for b9ae46c
.github/workflows/app-tests.yaml
@@ -76,7 +76,7 @@ jobs:
76
run: python3 -m pytest -s -vv --cov --cov-fail-under=85
77
- name: Run E2E tests with Playwright
78
id: e2e
79
- if: runner.os != 'Windows'
+ #if: runner.os != 'Windows'
80
run: |
81
playwright install chromium --with-deps
82
python3 -m pytest tests/e2e.py --tracing=retain-on-failure
tests/conftest.py
@@ -43,7 +43,7 @@ def monkeypatch_session():
43
@pytest.fixture(scope="session")
44
def mock_session_env(monkeypatch_session):
45
"""Mock the environment variables for testing."""
46
- with mock.patch.dict(os.environ, clear=True):
+ with mock.patch.dict(os.environ):
47
# Database
48
monkeypatch_session.setenv("POSTGRES_HOST", POSTGRES_HOST)
49
monkeypatch_session.setenv("POSTGRES_USERNAME", POSTGRES_USERNAME)
0 commit comments