mirror of https://github.com/MISP/misp-modules
chg: [pipenv] removed
parent
b27dd2acfc
commit
961672412b
14
.travis.yml
14
.travis.yml
|
@ -38,20 +38,20 @@ install:
|
||||||
- popd
|
- popd
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- pipenv run coverage run -m --parallel-mode --source=misp_modules misp_modules.__init__ -l 127.0.0.1 &
|
- coverage run -m --parallel-mode --source=misp_modules misp_modules.__init__ -l 127.0.0.1 &
|
||||||
- pid=$!
|
- pid=$!
|
||||||
- sleep 5
|
- sleep 5
|
||||||
- pipenv run nosetests --with-coverage --cover-package=misp_modules
|
- nosetests --with-coverage --cover-package=misp_modules
|
||||||
- kill -s KILL $pid
|
- kill -s KILL $pid
|
||||||
- pushd ~/
|
- pushd ~/
|
||||||
- pipenv run coverage run -m --parallel-mode --source=misp_modules misp_modules.__init__ -s -l 127.0.0.1 &
|
- coverage run -m --parallel-mode --source=misp_modules misp_modules.__init__ -s -l 127.0.0.1 &
|
||||||
- pid=$!
|
- pid=$!
|
||||||
- popd
|
- popd
|
||||||
- sleep 5
|
- sleep 5
|
||||||
- pipenv run nosetests --with-coverage --cover-package=misp_modules
|
- nosetests --with-coverage --cover-package=misp_modules
|
||||||
- kill -s KILL $pid
|
- kill -s KILL $pid
|
||||||
- pipenv run flake8 --ignore=E501,W503,E226 misp_modules
|
- flake8 --ignore=E501,W503,E226 misp_modules
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- pipenv run coverage combine .coverage*
|
- coverage combine .coverage*
|
||||||
- pipenv run codecov
|
- codecov
|
||||||
|
|
Loading…
Reference in New Issue