We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76effa8 commit c62a1d4Copy full SHA for c62a1d4
.travis.yml
@@ -4,7 +4,7 @@ matrix:
4
include:
5
- os: linux
6
python: 2.7
7
- env: PYTHON=2.7 PANDAS=0.19.2 COVERAGE='false' LINT='true'
+ env: PYTHON=2.7 PANDAS=0.19.2 COVERAGE='false' LINT='false'
8
9
python: 3.5
10
env: PYTHON=3.5 PANDAS=0.18.1 COVERAGE='true' LINT='false'
@@ -49,7 +49,11 @@ install:
49
fi
50
51
script:
52
- - if [[ $PYTHON == '2.7' ]]; then nox -s test ; fi
+ - 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
57
- if [[ $PYTHON == '3.5' ]]; then nox -s test_earliest_deps ; fi
58
- if [[ $PYTHON == '3.6' ]] && [[ "$PANDAS" == "MASTER" ]]; then nox -s test_latest_deps ; fi
59
- REQ="ci/requirements-${PYTHON}-${PANDAS}" ;
0 commit comments