mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-16 22:20:24 +00:00
14 lines
319 B
YAML
14 lines
319 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
before_install:
|
|
- export PIP_USE_MIRRORS=true
|
|
- export PIP_INDEX_URL=https://simple.crate.io/
|
|
install:
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- coverage run runtests.py
|
|
after_success:
|
|
- coverage report
|
|
- pip install --quiet --use-mirrors python-coveralls
|
|
- coveralls
|