From 74d31501291c0595a637c80fb11d6959bf6813d3 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Wed, 18 Jan 2017 14:25:58 +0000 Subject: [PATCH] Fix pytest warning about cov Without this I get a pytest warning about cov every time I run it. The cov plugin still gets loaded and I can still generate coverage reports, so I assume that the coverage plugin is loaded automatically. Not sure if we should require a more recent pytest version. This is what the warning looked like: ``` ======================= pytest-warning summary ======================== WP1 None Module already imported so can not be re-written: pytest_cov ``` --- conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/conftest.py b/conftest.py index b2f38246b02e..9673db23c2fc 100644 --- a/conftest.py +++ b/conftest.py @@ -1,4 +1,3 @@ pytest_plugins = [ 'mypy.test.data', - 'pytest_cov', ]