Skip to content

Commit

Permalink
Merge a72d986 into 1ca52e0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Read committed Nov 22, 2019
2 parents 1ca52e0 + a72d986 commit f1260b7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/travis-build.bash
Expand Up @@ -22,7 +22,12 @@ else
fi

python setup.py develop
pip install -r requirements.txt
if [ -f requirements-py2.txt ]
then
pip install -r requirements-py2.txt
else
pip install -r requirements.txt
fi
pip install -r dev-requirements.txt
cd -

Expand Down

0 comments on commit f1260b7

Please sign in to comment.