mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
18 lines
280 B
YAML
18 lines
280 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7-dev" # 3.7 development branch
|
|
|
|
before_install:
|
|
- pip install codecov
|
|
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "python setup.py install"
|
|
- "python setup.py test"
|
|
|
|
after_success:
|
|
- codecov |