Skip to content

Commit ac7817d

Browse files
committed
Use plain pytest for Python 2.7
1 parent 76effa8 commit ac7817d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ install:
4949
fi
5050

5151
script:
52-
- if [[ $PYTHON == '2.7' ]]; then nox -s test ; fi
52+
- if [[ $PYTHON == '2.7' ]]; then
53+
pip install -r ci/requirements-2.7-0.19.2.pip ;
54+
pytest tests/unit ;
55+
fi
5356
- if [[ $PYTHON == '3.5' ]]; then nox -s test_earliest_deps ; fi
5457
- if [[ $PYTHON == '3.6' ]] && [[ "$PANDAS" == "MASTER" ]]; then nox -s test_latest_deps ; fi
5558
- REQ="ci/requirements-${PYTHON}-${PANDAS}" ;

0 commit comments

Comments
 (0)