Stegano/.travis.yml
2018-02-23 21:35:27 +01:00

20 lines
319 B
YAML

language: python
python:
- 3.6
env:
- PIPENV_VENV_IN_PROJECT=1
install:
- "pip install pipenv"
- "pipenv install"
- "pipenv install --dev"
script:
# Run the test suit
- nosetests --with-coverage --cover-package=stegano
# Run the type checker
- python tools/run_mypy.py
after_success:
- coveralls