mirror of
https://github.com/Gandi/gandi.cli.git
synced 2026-01-11 17:36:26 +00:00
22 lines
399 B
YAML
22 lines
399 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
# - "3.4"
|
|
# - "3.5"
|
|
- "3.6"
|
|
- "3.8"
|
|
# - pypy
|
|
# - pypy3
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
sudo: true
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
install:
|
|
- 'pip install -e ".[test]"'
|
|
- 'pip install coveralls'
|
|
script:
|
|
- "python ./setup.py test"
|
|
after_success:
|
|
- coveralls
|