Stegano/.travis.yml
2017-05-07 15:13:18 +02:00

17 lines
300 B
YAML

language: python
python:
- 3.5
- 3.6
install:
- "pip install -r requirements.txt"
- "pip install -r requirements.dev.txt"
script:
# Run the test suit
- nosetests --with-coverage --cover-package=stegano
# Run the type checker
- python tools/run_mypy.py
after_success:
- coveralls