Skip to content

Commit 047aa51

Browse files
committed
Add failing test
1 parent f010759 commit 047aa51

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.egg-info
2+
*.pyc
23
.tox/
34
build/
45
dist/

tests/test_sklearn_pandas.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_fail():
2+
assert False

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ envlist = py27
44
[testenv]
55
deps =
66
pip==7.0.1
7+
pytest==2.7.1
78
setuptools==16.0
89
wheel==0.24.0
910

@@ -13,4 +14,5 @@ commands =
1314
pip install pandas --no-index
1415
pip install scikit-learn --no-index
1516
python setup.py develop
17+
py.test
1618
python setup.py bdist_wheel

0 commit comments

Comments
 (0)