File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,10 @@ def default(session):
36
36
session .install ("grpcio" )
37
37
session .install ("-e" , "test_utils" )
38
38
39
- coverage_fail_under = "--cov-fail-under=97"
40
-
41
39
# fastparquet is not included in .[all] because, in general, it's redundant
42
40
# with pyarrow. We still want to run some unit tests with fastparquet
43
41
# serialization, though.
44
- dev_install = ".[all,fastparquet]"
45
-
46
- session .install ("-e" , dev_install )
42
+ session .install ("-e" , ".[all,fastparquet]" )
47
43
48
44
# IPython does not support Python 2 after version 5.x
49
45
if session .python == "2.7" :
@@ -60,7 +56,7 @@ def default(session):
60
56
"--cov-append" ,
61
57
"--cov-config=.coveragerc" ,
62
58
"--cov-report=" ,
63
- coverage_fail_under ,
59
+ "--cov-fail-under=0" ,
64
60
os .path .join ("tests" , "unit" ),
65
61
* session .posargs ,
66
62
)
You can’t perform that action at this time.
0 commit comments