mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
18 lines
321 B
YAML
18 lines
321 B
YAML
language: python
|
|
# sudo: required
|
|
dist: trusty
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.6-dev"
|
|
- "3.7-dev"
|
|
- "nightly"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install Flask==0.12 stem==1.5.4 pytest-cov coveralls
|
|
# command to run tests
|
|
script: pytest --cov=onionshare test/
|
|
after_success:
|
|
- coveralls
|