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 e1fb9bb commit d9ab82eCopy full SHA for d9ab82e
probscale/tests/test_probscale.py
@@ -6,7 +6,7 @@
6
7
try:
8
from scipy import stats
9
-except:
+except: # pragma: no cover
10
stats = None
11
12
import pytest
probscale/tests/test_viz.py
@@ -3,7 +3,7 @@
3
import numpy
4
import matplotlib.pyplot as plt
5
-if sys.version_info.major == 2:
+if sys.version_info.major == 2: # pragma: no cover
import mock
else:
from unittest import mock
@@ -12,7 +12,7 @@
13
14
15
16
17
18
from probscale import viz
0 commit comments