mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-15 18:28:31 +02:00
17 lines
300 B
YAML
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
|