mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-01 03:00:55 -06:00
9 lines
200 B
Python
9 lines
200 B
Python
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_env_development(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
monkeypatch.setenv("FLASK_ENV", "development")
|