fix: Tornado expects a KILL now.

pull/304/head
Raphaël Vinot 2019-03-09 06:40:23 +01:00
parent 9611c7f2a9
commit c4ced9dfbf
1 changed files with 2 additions and 2 deletions

View File

@ -19,14 +19,14 @@ script:
- pid=$! - pid=$!
- sleep 5 - sleep 5
- pipenv run nosetests --with-coverage --cover-package=misp_modules - pipenv run nosetests --with-coverage --cover-package=misp_modules
- kill -s INT $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 & - pipenv run 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 - pipenv run nosetests --with-coverage --cover-package=misp_modules
- kill -s INT $pid - kill -s KILL $pid
- pipenv run flake8 --ignore=E501,W503 misp_modules - pipenv run flake8 --ignore=E501,W503 misp_modules
after_success: after_success: