11 lines
208 B
YAML
11 lines
208 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
cache: pip
|
|
install:
|
|
- pip install -r test_requirements.txt
|
|
- pip install .
|
|
script:
|
|
- py.test tests/*_test.py --cov=georideapilib
|
|
- pylint georideapilib
|
|
- coveralls |