18 lines
224 B
YAML
18 lines
224 B
YAML
os: linux
|
|
dist: xenial
|
|
|
|
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.7
|
|
- 3.8
|
|
cache:
|
|
pip: true
|
|
|
|
before_install:
|
|
- pip install -r requirements_all.txt
|
|
- pip install -e .
|
|
script:
|
|
- pylint pyicloud tests
|
|
- py.test
|