mirror of
https://github.com/codl/forget
synced 2025-01-07 12:52:34 +01:00
16 lines
241 B
YAML
16 lines
241 B
YAML
dist: xenial
|
|
sudo: true
|
|
language: python
|
|
python:
|
|
- 3.6
|
|
- 3.7
|
|
- 3.7-dev
|
|
install:
|
|
- pip install -r requirements.txt -r requirements-dev.txt
|
|
- npm install
|
|
script:
|
|
- pytest --cov=.
|
|
after_success:
|
|
- codecov
|
|
cache: pip
|