We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f941c0 commit 9c810eaCopy full SHA for 9c810ea
tests/importer/circular_import_a.py
@@ -1,4 +1,4 @@
1
# Used by test_importer.py
2
from .circular_import_b import foo # noqa
3
4
-bar = 123
+bar = 123 # pragma: no cover
tests/importer/circular_import_b.py
from .circular_import_a import bar # noqa
-foo = 123
+foo = 123 # pragma: no cover
tests/test_auto_detection.py
@@ -11,8 +11,8 @@
11
12
try:
13
importlib.import_module("uvloop")
14
- expected_loop = "uvloop" # pragma: py-not-win32
15
-except ImportError: # pragma: no cover
+ expected_loop = "uvloop" # pragma: py-win32
+except ImportError: # pragma: py-not-win32
16
expected_loop = "asyncio"
17
18
0 commit comments