mirror of
https://github.com/deadc0de6/catcli
synced 2024-11-15 18:14:01 +00:00
18 lines
282 B
YAML
18 lines
282 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "3.3"
|
||
|
- "3.4"
|
||
|
- "3.5"
|
||
|
- "3.6"
|
||
|
- "nightly"
|
||
|
install:
|
||
|
- "pip install pycodestyle"
|
||
|
- "pip install nose"
|
||
|
- "pip install coverage"
|
||
|
- "pip install coveralls"
|
||
|
- "pip install -r requirements.txt"
|
||
|
script:
|
||
|
./tests.sh
|
||
|
after_success:
|
||
|
coveralls
|