mirror of
https://github.com/pinry/pinry.git
synced 2026-02-19 12:57:11 +01:00
18 lines
261 B
YAML
18 lines
261 B
YAML
sudo: false
|
|
dist: trusty
|
|
language: python
|
|
cache:
|
|
pip: true
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
install:
|
|
- pip install pipenv && pipenv install --dev --system
|
|
script:
|
|
- python manage.py test
|
|
- make flake8
|
|
notifications:
|
|
email: false
|
|
|