12 lines
170 B
YAML
12 lines
170 B
YAML
language: python
|
|
sudo: false
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
|
|
install:
|
|
- pip install -U wheel pytest==3
|
|
- pip install .
|
|
script: python3 setup.py test
|
|
|
|
cache: pip
|