Merge pull request #474 from mback2k/master

Follow up to PR #473
pull/475/head
Raphaël Vinot 2019-10-04 11:42:57 -07:00 committed by GitHub
commit a6ecd524d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View File

@ -8,9 +8,6 @@ if [ ${LEGACY} == true ]; then
pip install .[fileobjects]
else
# We're in python3, installing with pipenv.
pip install pipenv
pipenv update --dev
pip install pipenv
pipenv update --dev
fi
pushd tests
git clone https://github.com/viper-framework/viper-test-files.git
popd

View File

@ -7,5 +7,5 @@ if [ -z ${LEGACY} ]; then
# We're in python3, test all and use pipenv.
pipenv run nosetests-3.4 --with-coverage --cover-package=pymisp,tests --cover-tests tests/test_*.py
else
nosetests --with-coverage --cover-package=pymisp,tests --cover-tests tests/test_mispevent.py
nosetests --with-coverage --cover-package=pymisp,tests --cover-tests tests/test_mispevent.py
fi