Skip to content

Commit deb68ff

Browse files
authored
test: drop per-language version coverage levels (#46)
1 parent 1afd1cc commit deb68ff

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

noxfile.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,10 @@ def default(session):
3636
session.install("grpcio")
3737
session.install("-e", "test_utils")
3838

39-
coverage_fail_under = "--cov-fail-under=97"
40-
4139
# fastparquet is not included in .[all] because, in general, it's redundant
4240
# with pyarrow. We still want to run some unit tests with fastparquet
4341
# serialization, though.
44-
dev_install = ".[all,fastparquet]"
45-
46-
session.install("-e", dev_install)
42+
session.install("-e", ".[all,fastparquet]")
4743

4844
# IPython does not support Python 2 after version 5.x
4945
if session.python == "2.7":
@@ -60,7 +56,7 @@ def default(session):
6056
"--cov-append",
6157
"--cov-config=.coveragerc",
6258
"--cov-report=",
63-
coverage_fail_under,
59+
"--cov-fail-under=0",
6460
os.path.join("tests", "unit"),
6561
*session.posargs,
6662
)

0 commit comments

Comments
 (0)