We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 852b2a3 commit 3ab883fCopy full SHA for 3ab883f
.travis.yml
@@ -19,6 +19,7 @@ install:
19
- hash -r
20
- conda config --set always_yes yes --set changeps1 no
21
- conda config --add channels pandas
22
+ - conda config --add channels conda-forge
23
- conda update -q conda
24
- conda info -a
25
- conda create -n test-environment python=$PYTHON
@@ -31,8 +32,12 @@ install:
31
32
conda install pandas=$PANDAS;
33
fi
34
- pip install coverage pytest pytest-cov flake8 codecov
- - REQ="ci/requirements-${PYTHON}-${PANDAS}.pip"
35
- - pip install -r $REQ
+ - REQ="ci/requirements-${PYTHON}-${PANDAS}"
36
+ - if [ -f "$REQ.pip" ]; then
37
+ pip install -r "$REQ.pip";
38
+ else
39
+ conda install --file "$REQ.conda";
40
+ fi
41
- conda list
42
- python setup.py install
43
ci/requirements-3.6-0.20.1.pip renamed to ci/requirements-3.6-0.20.1.conda
0 commit comments