mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-05-14 10:33:19 +00:00
14 lines
302 B
YAML
14 lines
302 B
YAML
language: python
|
|
python:
|
|
- "3.6.5"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install coveralls==1.3.0
|
|
- pip install pyyaml==3.12
|
|
- pip install coverage==4.5.1
|
|
before_script:
|
|
- coverage erase
|
|
script:
|
|
- coverage run --source=eav runtests
|
|
after_success:
|
|
- coveralls
|