File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -828,6 +828,7 @@ def iris_dataframe():
828
828
}
829
829
)
830
830
831
+
831
832
@pytest .fixture
832
833
def cars_dataframe ():
833
834
return pd .read_csv ("tests/test_data/cars.csv.gz" , compression = 'gzip' )
@@ -881,7 +882,6 @@ def test_with_car_dataframe(cars_dataframe):
881
882
assert scores .mean () > 0.30
882
883
883
884
884
-
885
885
def test_heterogeneous_output_types_input_df ():
886
886
"""
887
887
Modify feat2, but pass feat1 through unmodified.
Original file line number Diff line number Diff line change
1
+ [flake8]
2
+ exclude =
3
+ .git
4
+ __pycache__
5
+ docs/source/conf.py
6
+ old
7
+ build
8
+ dist
9
+ *site-packages/pyflakes
10
+ *site-packages/_pytest
11
+ *site-packages/dateutil
12
+
1
13
[tox]
2
14
envlist = {py36}-sklearn{23}-pandas{1}
3
15
13
25
sklearn23: scikit-learn ==0.23.1
14
26
15
27
commands =
16
- flake8 --exclude build
28
+ flake8
17
29
py.test README.rst tests
You can’t perform that action at this time.
0 commit comments