Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ language: python

python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"

env:
matrix:
- DJANGO=Django==1.10.6
- DJANGO=Django==1.9.12
- DJANGO=Django==1.8.17
- DJANGO=Django==1.11.18
- DJANGO=Django==1.10.8
- DJANGO=Django==1.9.13
- DJANGO=Django==1.8.19
- DJANGO=Django==1.7.11
- DJANGO=Django==1.6.11

Expand All @@ -29,10 +29,6 @@ matrix:
env: DJANGO=Django==1.7.11
- python: "3.5"
env: DJANGO=Django==1.6.11
- python: "3.3"
env: DJANGO=Django==1.10.6
- python: "3.3"
env: DJANGO=Django==1.9.12

script:
- flake8 --max-line-length=100 --max-complexity=10 --statistics --benchmark django_slowtests
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Changelog
Current
-------

- Nothing yet
- Dropped Django 1.5* support
- Dropped Python 3.3* support
- Added Django 1.11.* support

0.5.1 (2019-02-04)
------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Welcome!

Welcome to the documentation for django-slowtests!

*Code tested on Django 1.6, 1.7, 1.8, 1.9, and 1.10 with Python 2.7 and 3.6.*
*Code tested on Django 1.6, 1.7, 1.8, 1.9, 1.10 and 1.11 with Python 2.7 and 3.6


Instructions
Expand Down
9 changes: 1 addition & 8 deletions django_slowtests/tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,2 @@
try:
from django.conf.urls import patterns
except ImportError:
from django.conf.urls.defaults import patterns


urlpatterns = patterns(
"",
)
urlpatterns = []
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def read(*parts):
url="https://github.com/realpython/django-slow-tests",
license="MIT",
packages=find_packages(),
tests_require=["Django>=1.5"],
install_requires=["django>=1.5"],
tests_require=["Django>=1.6"],
install_requires=["django>=1.6"],
test_suite="runtests.runtests",
classifiers=[
"Environment :: Web Environment",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27}-dj1.{6,7,8,9,10}, py{36}-dj1.{8,9,10}
envlist = py{27}-dj1.{6,7,8,9,10,11}, py{36}-dj1.{8,9,10,11}

[testenv]
deps =
Expand All @@ -9,5 +9,6 @@ deps =
dj1.8: Django>=1.8,<1.9
dj1.9: Django>=1.9,<1.10
dj1.10: Django>=1.10,<1.11
dj1.11: Django>=1.11,<1.12
freezegun>=0.1.8
commands = coverage run setup.py test