mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
17 lines
261 B
YAML
17 lines
261 B
YAML
sudo: false
|
|
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
python: 2.7
|
|
- os: linux
|
|
python: 3.5
|
|
|
|
install:
|
|
- pip install codecov nose-exclude locustio
|
|
script: coverage run --source=. `which nosetests` .
|
|
after_success:
|
|
- coverage report -m
|
|
- codecov
|