├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── _examples ├── django1.10 │ ├── db.sqlite3 │ ├── django_polls │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170316_1720.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── static │ │ │ ├── images │ │ │ │ └── background.png │ │ │ └── polls │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── admin │ │ │ │ └── base_site.html │ │ │ └── polls │ │ │ │ ├── detail.html │ │ │ │ ├── index.html │ │ │ │ └── results.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── requirements.txt ├── django1.6 │ ├── db.sqlite3 │ ├── firstapp │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── static │ │ │ └── polls │ │ │ │ └── style.css │ │ ├── templates │ │ │ └── polls │ │ │ │ ├── detail.html │ │ │ │ ├── index.html │ │ │ │ └── results.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── requirements.txt ├── django1.7 │ ├── .DS_Store │ ├── db.sqlite3 │ ├── firstapp │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── static │ │ │ └── polls │ │ │ │ └── style.css │ │ ├── templates │ │ │ └── polls │ │ │ │ ├── detail.html │ │ │ │ ├── index.html │ │ │ │ └── results.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── requirements.txt ├── django1.8 │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── static │ │ │ └── polls │ │ │ │ └── style.css │ │ ├── templates │ │ │ └── polls │ │ │ │ ├── detail.html │ │ │ │ ├── index.html │ │ │ │ └── results.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── requirements.txt └── django1.9 │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── polls │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── templates │ │ └── polls │ │ │ ├── detail.html │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── requirements.txt ├── bumpr.rc ├── django_slowtests ├── __init__.py ├── models.py ├── testrunner.py └── tests │ ├── __init__.py │ ├── fake.py │ ├── models.py │ ├── tests.py │ └── urls.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── installation.rst ├── runtests.py ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/README.rst -------------------------------------------------------------------------------- /_examples/django1.10/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/db.sqlite3 -------------------------------------------------------------------------------- /_examples/django1.10/django_polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.10/django_polls/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/django_polls/settings.py -------------------------------------------------------------------------------- /_examples/django1.10/django_polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/django_polls/urls.py -------------------------------------------------------------------------------- /_examples/django1.10/django_polls/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/django_polls/wsgi.py -------------------------------------------------------------------------------- /_examples/django1.10/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/manage.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.10/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/admin.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/apps.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/migrations/0002_auto_20170316_1720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/migrations/0002_auto_20170316_1720.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.10/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/models.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/static/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/static/images/background.png -------------------------------------------------------------------------------- /_examples/django1.10/polls/static/polls/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/static/polls/style.css -------------------------------------------------------------------------------- /_examples/django1.10/polls/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/templates/admin/base_site.html -------------------------------------------------------------------------------- /_examples/django1.10/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /_examples/django1.10/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/templates/polls/index.html -------------------------------------------------------------------------------- /_examples/django1.10/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/templates/polls/results.html -------------------------------------------------------------------------------- /_examples/django1.10/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/tests.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/urls.py -------------------------------------------------------------------------------- /_examples/django1.10/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.10/polls/views.py -------------------------------------------------------------------------------- /_examples/django1.10/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.10.6 2 | -------------------------------------------------------------------------------- /_examples/django1.6/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/db.sqlite3 -------------------------------------------------------------------------------- /_examples/django1.6/firstapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.6/firstapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/firstapp/settings.py -------------------------------------------------------------------------------- /_examples/django1.6/firstapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/firstapp/urls.py -------------------------------------------------------------------------------- /_examples/django1.6/firstapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/firstapp/wsgi.py -------------------------------------------------------------------------------- /_examples/django1.6/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/manage.py -------------------------------------------------------------------------------- /_examples/django1.6/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.6/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/admin.py -------------------------------------------------------------------------------- /_examples/django1.6/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/models.py -------------------------------------------------------------------------------- /_examples/django1.6/polls/static/polls/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.6/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /_examples/django1.6/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/templates/polls/index.html -------------------------------------------------------------------------------- /_examples/django1.6/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/templates/polls/results.html -------------------------------------------------------------------------------- /_examples/django1.6/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/tests.py -------------------------------------------------------------------------------- /_examples/django1.6/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/urls.py -------------------------------------------------------------------------------- /_examples/django1.6/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/polls/views.py -------------------------------------------------------------------------------- /_examples/django1.6/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.6/requirements.txt -------------------------------------------------------------------------------- /_examples/django1.7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/.DS_Store -------------------------------------------------------------------------------- /_examples/django1.7/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/db.sqlite3 -------------------------------------------------------------------------------- /_examples/django1.7/firstapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.7/firstapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/firstapp/settings.py -------------------------------------------------------------------------------- /_examples/django1.7/firstapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/firstapp/urls.py -------------------------------------------------------------------------------- /_examples/django1.7/firstapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/firstapp/wsgi.py -------------------------------------------------------------------------------- /_examples/django1.7/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/manage.py -------------------------------------------------------------------------------- /_examples/django1.7/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.7/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/admin.py -------------------------------------------------------------------------------- /_examples/django1.7/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/models.py -------------------------------------------------------------------------------- /_examples/django1.7/polls/static/polls/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.7/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /_examples/django1.7/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/templates/polls/index.html -------------------------------------------------------------------------------- /_examples/django1.7/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/templates/polls/results.html -------------------------------------------------------------------------------- /_examples/django1.7/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/tests.py -------------------------------------------------------------------------------- /_examples/django1.7/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/urls.py -------------------------------------------------------------------------------- /_examples/django1.7/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/polls/views.py -------------------------------------------------------------------------------- /_examples/django1.7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.7/requirements.txt -------------------------------------------------------------------------------- /_examples/django1.8/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/db.sqlite3 -------------------------------------------------------------------------------- /_examples/django1.8/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/manage.py -------------------------------------------------------------------------------- /_examples/django1.8/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.8/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/mysite/settings.py -------------------------------------------------------------------------------- /_examples/django1.8/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/mysite/urls.py -------------------------------------------------------------------------------- /_examples/django1.8/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/mysite/wsgi.py -------------------------------------------------------------------------------- /_examples/django1.8/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.8/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/admin.py -------------------------------------------------------------------------------- /_examples/django1.8/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/models.py -------------------------------------------------------------------------------- /_examples/django1.8/polls/static/polls/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.8/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /_examples/django1.8/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/templates/polls/index.html -------------------------------------------------------------------------------- /_examples/django1.8/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/templates/polls/results.html -------------------------------------------------------------------------------- /_examples/django1.8/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/tests.py -------------------------------------------------------------------------------- /_examples/django1.8/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/urls.py -------------------------------------------------------------------------------- /_examples/django1.8/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/polls/views.py -------------------------------------------------------------------------------- /_examples/django1.8/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.8/requirements.txt -------------------------------------------------------------------------------- /_examples/django1.9/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/db.sqlite3 -------------------------------------------------------------------------------- /_examples/django1.9/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/manage.py -------------------------------------------------------------------------------- /_examples/django1.9/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.9/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/mysite/settings.py -------------------------------------------------------------------------------- /_examples/django1.9/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/mysite/urls.py -------------------------------------------------------------------------------- /_examples/django1.9/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/mysite/wsgi.py -------------------------------------------------------------------------------- /_examples/django1.9/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_examples/django1.9/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/admin.py -------------------------------------------------------------------------------- /_examples/django1.9/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/apps.py -------------------------------------------------------------------------------- /_examples/django1.9/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/models.py -------------------------------------------------------------------------------- /_examples/django1.9/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /_examples/django1.9/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/templates/polls/index.html -------------------------------------------------------------------------------- /_examples/django1.9/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/tests.py -------------------------------------------------------------------------------- /_examples/django1.9/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/urls.py -------------------------------------------------------------------------------- /_examples/django1.9/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/polls/views.py -------------------------------------------------------------------------------- /_examples/django1.9/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/_examples/django1.9/requirements.txt -------------------------------------------------------------------------------- /bumpr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/bumpr.rc -------------------------------------------------------------------------------- /django_slowtests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/django_slowtests/__init__.py -------------------------------------------------------------------------------- /django_slowtests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_slowtests/testrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/django_slowtests/testrunner.py -------------------------------------------------------------------------------- /django_slowtests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_slowtests/tests/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/django_slowtests/tests/fake.py -------------------------------------------------------------------------------- /django_slowtests/tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_slowtests/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/django_slowtests/tests/tests.py -------------------------------------------------------------------------------- /django_slowtests/tests/urls.py: -------------------------------------------------------------------------------- 1 | 2 | urlpatterns = [] 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/django-slow-tests/HEAD/tox.ini --------------------------------------------------------------------------------