misp-modules/.travis.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2016-04-11 11:24:20 +02:00
language: python
2016-04-28 14:26:30 +02:00
services:
- redis-server
cache: pip
2016-04-11 11:24:20 +02:00
python:
2017-05-24 07:39:18 +02:00
- "3.6"
- "3.6-dev"
2018-07-12 11:43:24 +02:00
- "3.7-dev"
2016-04-11 11:24:20 +02:00
install:
2019-04-26 12:08:52 +02:00
- sudo apt-get install libzbar0 libzbar-dev libpoppler-cpp-dev
- pip install pipenv
- pipenv install --dev
# MKDOCS
- pip install -r docs/REQUIREMENTS.txt
2016-04-11 11:24:20 +02:00
script:
- pipenv run coverage run -m --parallel-mode --source=misp_modules misp_modules.__init__ -l 127.0.0.1 &
2016-08-12 14:51:26 +02:00
- pid=$!
- sleep 5
- pipenv run nosetests --with-coverage --cover-package=misp_modules
2019-03-09 06:40:23 +01:00
- kill -s KILL $pid
- pushd ~/
- pipenv run coverage run -m --parallel-mode --source=misp_modules misp_modules.__init__ -s -l 127.0.0.1 &
2016-08-12 14:51:26 +02:00
- pid=$!
2016-06-23 12:53:45 +02:00
- popd
2016-08-12 14:51:26 +02:00
- sleep 5
- pipenv run nosetests --with-coverage --cover-package=misp_modules
2019-03-09 06:40:23 +01:00
- kill -s KILL $pid
- pipenv run flake8 --ignore=E501,W503 misp_modules
2016-08-12 14:51:26 +02:00
after_success:
- pipenv run coverage combine .coverage*
- pipenv run codecov
2019-07-31 08:53:16 +02:00
# MKDOCS
- make ci_generate_docs
deploy:
provider: pages
local-dir: site
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
keep-history: true
on:
branch: master