mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 12:57:50 +08:00
24 lines
283 B
YAML
24 lines
283 B
YAML
sudo: false
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
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 |