From 2c3424b331d193f3c3394f0989c8f95a16e5b1b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 13 May 2019 11:27:39 +0200 Subject: [PATCH] chg: Add PyMISPGalaxies test --- .travis.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c413fe7..cd40f33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,14 +3,27 @@ language: python cache: pip python: - - "3.6" + - "3.6-dev" + - "3.7-dev" sudo: required install: - sudo apt-get update -qq - sudo apt-get install -y -qq jq moreutils - - pip install jsonschema + - pip install jsonschema pipenv + - pushd .. + # Install PyMISPGalaxies + - git clone https://github.com/MISP/PyMISPGalaxies.git + - pushd PyMISPGalaxies + - git submodule update --init + - git submodule foreach git pull origin master + - pipenv install -d + - popd + - popd script: - ./validate_all.sh + - pushd ../PyMISPGalaxies + - pipenv run nosetests-3.4 --with-coverage --cover-package=pymispgalaxies -d + - popd