PyMISP/travis/install_travis.sh

14 lines
261 B
Bash
Raw Normal View History

2019-04-25 11:45:46 +02:00
#!/usr/bin/env bash
set -e
set -x
if [ ${LEGACY} == true ]; then
pip install nose coveralls codecov requests-mock pydeep
pip install .[fileobjects]
else
# We're in python3, installing with pipenv.
pip install pipenv
pipenv update --dev
2019-04-25 11:45:46 +02:00
fi