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 e0e3c2c commit 55a4c3aCopy full SHA for 55a4c3a
src/pytest_flask/fixtures.py
@@ -40,7 +40,7 @@ def test_login(self):
40
41
42
@pytest.fixture(scope=_determine_scope)
43
-def live_server(request, app, pytestconfig):
+def live_server(request, app, pytestconfig): # pragma: no cover
44
"""Run application in a separate process.
45
46
When the ``live_server`` fixture is applied, the ``url_for`` function
src/pytest_flask/live_server.py
@@ -14,7 +14,7 @@
14
multiprocessing = multiprocessing.get_context("fork")
15
16
17
-class LiveServer:
+class LiveServer: # pragma: no cover
18
"""The helper class used to manage a live server. Handles creation and
19
stopping application in a separate process.
20
0 commit comments