mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-14 17:58:32 +02:00
20 lines
319 B
YAML
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
|