mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
Upgrades pytest, pytest-django and pytest-cov version to fix travis build (#358)
* Upgrades pytest, pytest-django and pytest-cov version * Skips testing Python 3.5 with django trunk (Django 2.1 requires Python 3.6)
This commit is contained in:
parent
f8f2ef340f
commit
4e18710537
3 changed files with 6 additions and 4 deletions
|
|
@ -12,6 +12,8 @@ master (unreleased)
|
|||
- Support `reversed` for all kinds of `Choices` objects, fixes GH-309
|
||||
- Fix Model instance non picklable GH-330
|
||||
- Fix patched `save` in FieldTracker
|
||||
- Upgrades test requirements (pytest, pytest-django, pytest-cov) and
|
||||
skips tox test with Python 3.5 and Django (trunk)
|
||||
|
||||
3.1.2 (2018.05.09)
|
||||
------------------
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
pytest==3.3.1
|
||||
pytest-django==3.1.2
|
||||
pytest==4.3.0
|
||||
pytest-django==3.4.7
|
||||
psycopg2==2.7.6.1
|
||||
pytest-cov==2.6.1
|
||||
3
tox.ini
3
tox.ini
|
|
@ -2,7 +2,7 @@
|
|||
envlist =
|
||||
py27-django{19,110,111}
|
||||
py34-django{19,110,111,200}
|
||||
py35-django{19,110,111,200,201,trunk}
|
||||
py35-django{19,110,111,200,201}
|
||||
py36-django{111,200,201,trunk}
|
||||
flake8
|
||||
|
||||
|
|
@ -16,7 +16,6 @@ deps =
|
|||
djangotrunk: https://github.com/django/django/archive/master.tar.gz
|
||||
freezegun == 0.3.8
|
||||
-rrequirements-test.txt
|
||||
pytest-cov
|
||||
ignore_outcome =
|
||||
djangotrunk: True
|
||||
passenv =
|
||||
|
|
|
|||
Loading…
Reference in a new issue