mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
* Add the join manager + tests * Documentation for join manager * Use order_by for consistent tests * Use postgres instead sqlite for tests for better reliability * Fix coverage * Drop django 1.8
25 lines
659 B
YAML
25 lines
659 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
install: pip install tox-travis codecov
|
|
# positional args ({posargs}) to pass into tox.ini
|
|
script: tox -- --cov --cov-append
|
|
services:
|
|
- postgresql
|
|
after_success: codecov
|
|
deploy:
|
|
provider: pypi
|
|
user: jazzband
|
|
server: https://jazzband.co/projects/django-model-utils/upload
|
|
distributions: sdist bdist_wheel
|
|
password:
|
|
secure: JxUmEdYS8qT+7xhVyzmVD4Gkwqdz5XKxoUhKP795CWIXoJjtlGszyo6w0XfnFs0epXtd1NuCRXdhea+EqWKFDlQ3Yg7m6Y/yTQV6nMHxCPSvicROho7pAiJmfc/x+rSsPt5ag8av6+S07tOqvMnWBBefYbpHRoel78RXkm9l7Mc=
|
|
on:
|
|
tags: true
|
|
repo: jazzband/django-model-utils
|
|
python: 3.6
|