Skip to content

Commit 002584e

Browse files
committed
TST: install dependencies with Conda on py3.6.
Cover dependency installation via Conda in one of the tests.
1 parent 852b2a3 commit 002584e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ install:
3131
conda install pandas=$PANDAS;
3232
fi
3333
- pip install coverage pytest pytest-cov flake8 codecov
34-
- REQ="ci/requirements-${PYTHON}-${PANDAS}.pip"
35-
- pip install -r $REQ
34+
- REQ="ci/requirements-${PYTHON}-${PANDAS}"
35+
- if [ -f "$REQ.pip" ]; then
36+
pip install -r "$REQ.pip";
37+
else
38+
conda install --file "$REQ.conda";
39+
fi
3640
- conda list
3741
- python setup.py install
3842

File renamed without changes.

0 commit comments

Comments
 (0)