This commit is contained in:
Sarah Bird 2018-02-28 21:19:19 -06:00 коммит произвёл Victor Ng
Родитель 4d4560bebe
Коммит c4c307846c
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -24,13 +24,13 @@ install:
# Setup environment
- if [[ "$REQUIREMENTS" == "latest" ]]; then
conda create -n latest python=$TRAVIS_PYTHON_VERSION;
source activate latest
pip install -e . --process-dependency-links
source activate latest;
pip install -e . --process-dependency-links;
elif [[ "$REQUIREMENTS" == "emr" ]]; then
conda env create -f environment_emr.yaml
source activate emr
conda env create -f environment_emr.yaml;
source activate emr;
else
exit 1
exit 1;
fi
- pip install -r test_requirements.txt