mirror of https://github.com/MISP/PyMISP
17 lines
338 B
Bash
17 lines
338 B
Bash
#!/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
|
|
fi
|
|
pushd tests
|
|
git clone https://github.com/viper-framework/viper-test-files.git
|
|
popd
|