mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
12 lines
274 B
Python
12 lines
274 B
Python
"""Shared test fixtures."""
|
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _clean_backend_env(monkeypatch):
|
|
"""Ensure CLOAKBROWSER_BACKEND doesn't leak into tests from the host environment."""
|
|
monkeypatch.delenv("CLOAKBROWSER_BACKEND", raising=False)
|