mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
26 lines
393 B
YAML
26 lines
393 B
YAML
language: python
|
|
|
|
python:
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
|
|
env:
|
|
- DJANGO: django>=1.11,<2.0
|
|
- DJANGO: django>=2.0
|
|
|
|
before_install:
|
|
- pip install coverage codacy-coverage
|
|
- coverage erase
|
|
|
|
install:
|
|
- npm install
|
|
- pip install $DJANGO
|
|
- pip install -e .[standalone]
|
|
|
|
script:
|
|
- coverage run --append runtests.py
|
|
|
|
after_success:
|
|
- coverage xml
|
|
- python-codacy-coverage -r coverage.xml
|