Files
puppetboard/.travis.yml
Mike Terzo 10147b993e Simply build requirements. Dependency management based on
social_app django project.
2017-03-20 17:41:52 -04:00

20 lines
321 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
install:
- pip install -r requirements-test.txt
- pip install -q coveralls --use-wheel
script:
- pytest
- if [ "${TRAVIS_PYTHON_VERSION}" != "2.6" ]; then
pip install bandit;
bandit -r puppetboard;
fi
after_success:
- coveralls