ZeroNet/.travis.yml

19 lines
328 B
YAML

language: python
cache: pip
python:
- "2.7"
os:
- linux
- osx
install:
- pip install -r requirements.txt
script:
- python -m pytest src/Test --cov src --cov-config src/Test/coverage.ini
before_install:
- pip install codecov
- pip install pytest-cov
- pip install coveralls
after_success:
- codecov
- coveralls