mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 04:47:48 +08:00
27 lines
302 B
YAML
27 lines
302 B
YAML
sudo: true
|
|
|
|
notifications:
|
|
email: false
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
dist: xenial
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8-dev"
|
|
|
|
install:
|
|
- pip install -U pip
|
|
- pip install codecov
|
|
- pip install -r requirements.txt
|
|
|
|
script:
|
|
- coverage run oneforall/example.py
|
|
|
|
after_success:
|
|
- codecov |