mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 21:29:43 +00:00
18 lines
275 B
YAML
18 lines
275 B
YAML
language: python
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "nightly"
|
|
install:
|
|
- "pip install pep8"
|
|
- "pip install nose"
|
|
- "pip install coverage"
|
|
- "pip install coveralls"
|
|
- "pip install -r requirements.txt"
|
|
script:
|
|
./tests.sh
|
|
after_success:
|
|
coveralls
|