Skip to content

Commit c62a1d4

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

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ matrix:
44
include:
55
- os: linux
66
python: 2.7
7-
env: PYTHON=2.7 PANDAS=0.19.2 COVERAGE='false' LINT='true'
7+
env: PYTHON=2.7 PANDAS=0.19.2 COVERAGE='false' LINT='false'
88
- os: linux
99
python: 3.5
1010
env: PYTHON=3.5 PANDAS=0.18.1 COVERAGE='true' LINT='false'
@@ -49,7 +49,11 @@ 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+
pip install -e . ;
55+
pytest tests/unit ;
56+
fi
5357
- if [[ $PYTHON == '3.5' ]]; then nox -s test_earliest_deps ; fi
5458
- if [[ $PYTHON == '3.6' ]] && [[ "$PANDAS" == "MASTER" ]]; then nox -s test_latest_deps ; fi
5559
- REQ="ci/requirements-${PYTHON}-${PANDAS}" ;

0 commit comments

Comments
 (0)