mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-24 05:15:47 +03:00
b57de62392
This reverts commit 493bfc9cc5
.
16 lines
257 B
YAML
16 lines
257 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "pypy"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install coveralls
|
|
script:
|
|
- python setup.py install
|
|
- coverage run --source=glances unitest.py
|
|
after_success:
|
|
- coveralls
|