We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba542cc commit 28bdaebCopy full SHA for 28bdaeb
async_timeout/__init__.py
@@ -72,7 +72,6 @@ def _cancel_task(self):
72
self._cancelled = True
73
74
75
-
76
def current_task(loop):
77
task = asyncio.Task.current_task(loop=loop)
78
if task is None:
requirements.txt
@@ -1,3 +1,5 @@
1
pytest==3.2.1
2
pytest-aiohttp==0.1.3
3
+pytest-cov
4
docutils==0.14
5
+-e .
setup.cfg
@@ -1,2 +1,2 @@
-[aliases]
-test=pytest
+[tool:pytest]
+addopts= --cov=async_timeout --cov-report=term --cov-report=html
0 commit comments