(monkeypatch, runner)
| 575 | |
| 576 | @need_dotenv |
| 577 | def test_disable_dotenv_from_env(monkeypatch, runner): |
| 578 | monkeypatch.chdir(test_path) |
| 579 | monkeypatch.setitem(os.environ, "FLASK_SKIP_DOTENV", "1") |
| 580 | runner.invoke(FlaskGroup()) |
| 581 | assert "FOO" not in os.environ |
| 582 | |
| 583 | |
| 584 | def test_run_cert_path(): |
nothing calls this directly
no test coverage detected