ZeroNet/.travis.yml

22 lines
505 B
YAML
Raw Normal View History

2015-09-20 12:30:32 +02:00
language: python
python:
- 2.7
2015-09-20 12:30:32 +02:00
install:
- pip install -U pip wheel
2015-09-20 12:30:32 +02:00
- pip install -r requirements.txt
before_script:
- openssl version -a
script:
- python -m pytest plugins/CryptMessage/Test
2015-09-24 22:29:07 +02:00
- python -m pytest src/Test --cov=src --cov-config src/Test/coverage.ini
2015-09-20 12:49:44 +02:00
before_install:
2017-04-08 00:06:38 +02:00
- pip install -U pytest mock pytest-cov selenium
2015-09-20 12:49:44 +02:00
- pip install codecov
2015-09-20 13:45:20 +02:00
- pip install coveralls
2015-09-20 12:49:44 +02:00
after_success:
2015-09-20 13:45:20 +02:00
- codecov
- coveralls --rcfile=src/Test/coverage.ini
cache:
directories:
2017-04-08 00:06:38 +02:00
- $HOME/.cache/pip