{ "info": { "author": "Praekelt Foundation", "author_email": "dev@praekelt.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "Django Setuptest\n================\n**Simple module enabling Django app testing via $ python setup.py test.**\n\n\n.. contents:: Contents\n :depth: 5\n\nNormally when you execute ``$ python setup.py test`` for Django related\nmodules you're almost certain to run into ``DJANGO_SETTINGS_MODULE``\nenvironment variable issues, e.g.::\n\n ImportError: Settings cannot be imported, because environment variable\n DJANGO_SETTINGS_MODULE is undefined.\n\nThis module overcomes this by configuring the ``DJANGO_SETTINGS_MODULE``\nenvironment variable before executing your test suite. As a bonus it also\ngenerates Coverage_ and `PEP 8`_ reports as part of the test.\n\n\nInstallation\n------------\n\n#. Provide a ``test_suite`` argument to the setup call specifying the \n ``setuptest.setuptest.SetupTestSuite`` test suite, e.g.::\n\n setup(\n # ...\n test_suite='setuptest.setuptest.SetupTestSuite',\n )\n\n Alternatively provide a ``cmdclass`` ``test`` argument to the setup call \n specifying the ``setuptest.test`` command, e.g.::\n \n from setuptest import test\n\n #...\n\n setup(\n # ...\n cmdclass={'test': test},\n )\n\n This overrides Python's builtin ``test`` command to enable the Django \n testrunner as well as allowing you to pass ``--failfast`` as a commandline\n argument, i.e.::\n\n $ python setup.py test --failfast\n\n For the ``cmdclass`` method to work ``django-setuptools`` should be \n installed and available in your Python path prior to running the ``test`` \n command, in which case ``django-setuptest`` is not required to be specified\n as part of the ``tests_required`` argument as detailed next.\n\n#. Provide a ``tests_require`` argument to the setup call including\n ``django-setuptest`` (required only if not already installed) and other\n package dependencies needed to execute the tests, e.g.::\n\n setup(\n # ...\n tests_require=(\n 'django-setuptest',\n ),\n )\n\n#. Specify your test specific Django settings in a ``test_settings``\n module in the same path as your app's ``setup.py``.\n These settings will be used when executing the tests, e.g. in\n ``test_settings.py``::\n\n DATABASE_ENGINE = 'sqlite3'\n\n INSTALLED_APPS = (\n 'myapp',\n )\n\n#. In order for the test suite to find your tests you must provide either a \n ``packages`` or ``py_modules`` argument to the setup call, e.g.::\n\n from setuptools import setup, find_packages\n \n setup(\n # ...\n packages=find_packages(),\n )\n \n # Or alternatively...\n \n setup(\n # ...\n py_modules=['myapp'],\n )\n\nUsage\n-----\nOnce correctly configured you can execute tests from the command line::\n \n $ python setup.py test\n \nor, if you want the test suite to stop after the first test failure is \ndetected::\n\n $ python setup.py test --failfast\n\nThis should output your test results as well as Coverage_ and `PEP 8`_\nreports.\n\n.. note::\n\n An XML Coverage report is generated in a file called ``coverage.xml``\n and a PEP8 report is generated in a file called ``pep8.txt``\n\nTo mute the output of the Coverage_ and `PEP 8`_ reports provide the\n``--quiet`` option::\n\n $ python setup.py test --quiet\n\nTo automatically restart the test runner when code changes are detected (similar to how ``runserver`` restarts) provide the ``--autoreload`` option::\n\n $ python setup.py test --autoreload\n\nTo only run tests for a particular test case specify the test case as the ``--label`` option::\n\n $ python setup.py test --label app.TestCase\n\nOr for a particular test method specify the test case's test method as the ``--label`` option::\n\n $ python setup.py test --label app.TestCase.test_method\n\nSample Output\n-------------\n\nExample output of dummy test including Coverage_ and `PEP 8`_ reports::\n\n $ python setup.py test\n running test\n running egg_info\n writing django_dummy.egg-info/PKG-INFO\n writing top-level names to django_dummy.egg-info/top_level.txt\n writing dependency_links to django_dummy.egg-info/dependency_links.txt\n reading manifest file 'django_dummy.egg-info/SOURCES.txt'\n reading manifest template 'MANIFEST.in'\n writing manifest file 'django_dummy.egg-info/SOURCES.txt'\n running build_ext\n Creating test database for alias 'default'...\n E\n ======================================================================\n ERROR: test_something (dummy.tests.TestCase)\n ----------------------------------------------------------------------\n Traceback (most recent call last):\n File \"/home/user/tmp/django-dummy/dummy/tests/__init__.py\", line 6, in test_something\n raise NotImplementedError('Test not implemented. Bad developer!')\n NotImplementedError: Test not implemented. Bad developer!\n \n ----------------------------------------------------------------------\n Ran 1 test in 0.000s\n \n FAILED (errors=1)\n Destroying test database for alias 'default'...\n \n Coverage Report:\n Name Stmts Miss Cover Missing\n -----------------------------------------------\n dummy/models 20 2 90% 22, 55\n \n PEP8 Report:\n dummy/tests/__init__.py:6:1: W391 blank line at end of file\n\n $\n\n\n.. _Coverage: http://nedbatchelder.com/code/coverage/\n.. _`PEP 8`: http://www.python.org/dev/peps/pep-0008/\n\nAuthors\n=======\n\nPraekelt Foundation\n-------------------\n* Shaun Sephton\n* Hedley Roos\n\nContributors\n------------\n* Jannis Leidel\n\nChangelog\n=========\n\n0.2.1 (2016-01-04)\n------------------\n#. Support Django 1.9.\n\n0.2 (2015-10-30)\n----------------\n#. Django 1.8 support (lamby).\n#. Exclude south_migrations from PEP8 checks (mikebryant).\n\n0.1.6 (2015-01-13)\n------------------\n#. Added saving of raw coverage data\n\n0.1.5 (2014-09-11)\n------------------\n#. Introduced support for Django 1.7.\n\n0.1.4 (2013-06-21)\n------------------\n#. South patches the test management command to handle the SOUTH_TESTS_MIGRATE setting. Apply that patch if South is installed.\n\n0.1.3 (2013-05-23)\n------------------\n#. Python 3 compatibility.\n\n0.1.2 (2012-07-02)\n------------------\n#. Exclude South migrations from Pep8.\n\n0.1.1 (2012-06-19)\n------------------\n#. Corrections to support PEP8 backwards incompatible API update.\n\n0.0.9 (2012-06-15)\n------------------\n#. Now supports running specific test classes or methods via the label option.\n\n0.0.8 (2012-06-13)\n------------------\n#. Added autoreload option restarting testrunner on code change detection.\n\n0.0.7 (2012-06-04)\n------------------\n#. Refactor into a test command allowing for failfast commandline argument.\n\n0.0.6 (2011-09-08)\n------------------\n#. Refactor, cleanup, self contained suite class.\n\n0.0.5 (2011-09-06)\n------------------\n#. Added frame hack to resolve packages and py_modules to test, no longer needs app specific test suite.\n\n0.0.4 (2011-09-06)\n------------------\n#. Refactored the app to use a callback style approach instead of monkey patching. Thanks `jezdez `_.\n\n0.0.3 (2011-08-30)\n------------------\n#. More robust test settings import.\n\n0.0.2 (2011-08-29)\n------------------\n#. Repeat Pep 8 errors.\n\n0.0.1 (2011-08-29)\n------------------\n#. Initial release.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/praekelt/django-setuptest", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "django-setuptest", "package_url": "https://pypi.org/project/django-setuptest/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-setuptest/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/praekelt/django-setuptest" }, "release_url": "https://pypi.org/project/django-setuptest/0.2.1/", "requires_dist": null, "requires_python": null, "summary": "Simple test suite enabling Django app testing via $ python setup.py test", "version": "0.2.1" }, "last_serial": 4599847, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "3b9a073c3332a51196934d228374944e", "sha256": "67969afe8e02cd90968942f15882a8e55661bb5f2cf14ad6e89327128219890c" }, "downloads": -1, "filename": "django_setuptest-0.0.1-py2.6.egg", "has_sig": false, "md5_digest": "3b9a073c3332a51196934d228374944e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 5296, "upload_time": "2011-08-29T15:14:53", "url": "https://files.pythonhosted.org/packages/87/4e/ddd36c7b06124ad88c260d8930ff0e4042892b79a6928bc658f3f26e66eb/django_setuptest-0.0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ac19f337212bad141c7b29c283d5e071", "sha256": "dfa87d045c89355471dccd2db58b1da24427ee622b5d2b9e71f576b04f2c14fc" }, "downloads": -1, "filename": "django_setuptest-0.0.1-py2.7.egg", "has_sig": false, "md5_digest": "ac19f337212bad141c7b29c283d5e071", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5292, "upload_time": "2011-08-29T15:14:22", "url": "https://files.pythonhosted.org/packages/a9/16/9b1c8afca8b9e1d37f55511969977e98a20d1dc9ccde8521ec7a46d8feaf/django_setuptest-0.0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bc6d3b9e6f6f4ebe71e8d1e6ec6a44a9", "sha256": "3ed267e55a95d7039928a0d34db41e94c35bab9dc8737beed9f20ca602be1451" }, "downloads": -1, "filename": "django-setuptest-0.0.1.tar.gz", "has_sig": false, "md5_digest": "bc6d3b9e6f6f4ebe71e8d1e6ec6a44a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4699, "upload_time": "2011-08-29T15:14:24", "url": "https://files.pythonhosted.org/packages/58/1b/9a5dd949378a47b570af6942a1405f52a04a55cca0a56427c7bddab0a36f/django-setuptest-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "7b09e895dc14937228d40d7d4b48ca13", "sha256": "9e054e7f13fa65a2d1b526d41b7163790a7c34175e4e2f70bb5d0d9967313c86" }, "downloads": -1, "filename": "django_setuptest-0.0.2-py2.6.egg", "has_sig": false, "md5_digest": "7b09e895dc14937228d40d7d4b48ca13", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 5342, "upload_time": "2011-08-29T16:04:42", "url": "https://files.pythonhosted.org/packages/3d/a3/c6d36bcd36d747d4ae0f8f1108cc4271b6ffe6d32b015e6eebc01e0d7165/django_setuptest-0.0.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a24edff6aa59aa5b9bb9bebf7ed0a51a", "sha256": "9830cd666993d5cb6a7d06a1e0936b72c2693cfacd4a6a301cd4a7cc45bf15f8" }, "downloads": -1, "filename": "django_setuptest-0.0.2-py2.7.egg", "has_sig": false, "md5_digest": "a24edff6aa59aa5b9bb9bebf7ed0a51a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5334, "upload_time": "2011-08-29T16:04:21", "url": "https://files.pythonhosted.org/packages/ee/f1/9e3416db05047d5b23660d315f2d47f3893b53ffdc74655e2066da296e33/django_setuptest-0.0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "223d32ab7ec1f6ef20f2f90b8e372846", "sha256": "35b194b3431c9241eb90c4ebe785c6f857e584726351b5640999133b9856bb76" }, "downloads": -1, "filename": "django-setuptest-0.0.2.tar.gz", "has_sig": false, "md5_digest": "223d32ab7ec1f6ef20f2f90b8e372846", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4727, "upload_time": "2011-08-29T16:04:23", "url": "https://files.pythonhosted.org/packages/4c/9c/4bc6a44cff7d3284105abae05c80fc27f2f346b0b06a9e78f1c48aa95fc7/django-setuptest-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "23b227f79aa729d048bca9d801622f63", "sha256": "bd1a408d97938d42cf2a4d838605553ff270c73782a12c73b93f33018953c77e" }, "downloads": -1, "filename": "django_setuptest-0.0.3-py2.6.egg", "has_sig": false, "md5_digest": "23b227f79aa729d048bca9d801622f63", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 5333, "upload_time": "2011-08-30T11:09:52", "url": "https://files.pythonhosted.org/packages/d0/28/c3fa53936b4de56e239f260f167b152c5238c7f1f9f0d8787e2852964477/django_setuptest-0.0.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "6fa4e423e65456bc0a0a831e15f55b22", "sha256": "7e86afc5dfec8f0802bc166ce2c044318e5f3f28e18455efd39443d6dcdfe466" }, "downloads": -1, "filename": "django_setuptest-0.0.3-py2.7.egg", "has_sig": false, "md5_digest": "6fa4e423e65456bc0a0a831e15f55b22", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5324, "upload_time": "2011-08-30T11:09:37", "url": "https://files.pythonhosted.org/packages/76/0e/432fad93b3936c36dd8585e70364e2fa70f9b0b5485e2ba05634fc0c98ec/django_setuptest-0.0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5a5ec42e6e9f211880fad59afcb479d1", "sha256": "d81deadf79b1976b0073ffeb1d4d79e1c3e034054bbd7a6d1960b945f3377acc" }, "downloads": -1, "filename": "django-setuptest-0.0.3.tar.gz", "has_sig": false, "md5_digest": "5a5ec42e6e9f211880fad59afcb479d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4748, "upload_time": "2011-08-30T11:09:38", "url": "https://files.pythonhosted.org/packages/3c/3e/6d05f37373cfc4c3841011e19001f634fbd102f63db343740610759b3d46/django-setuptest-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "81a395b80a97967eefff95f41a521edc", "sha256": "7e0f95c8cee1f736fe47ae17df3daa584a85c0d6bc8f3dd2b6531ff42c39f00f" }, "downloads": -1, "filename": "django_setuptest-0.0.4-py2.6.egg", "has_sig": false, "md5_digest": "81a395b80a97967eefff95f41a521edc", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 6065, "upload_time": "2011-09-06T12:06:58", "url": "https://files.pythonhosted.org/packages/1b/94/c4b2a6f8f1855b68632cf6823d36c7f69c0f7dc2de6618d46994e94f5d02/django_setuptest-0.0.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e3511b009424f82033db1ddbeb2bcbfe", "sha256": "95595451b19de69d6a035e0f49b7d9b4c6a81da3a12da538b82e48b35fe181af" }, "downloads": -1, "filename": "django_setuptest-0.0.4-py2.7.egg", "has_sig": false, "md5_digest": "e3511b009424f82033db1ddbeb2bcbfe", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 6051, "upload_time": "2011-09-06T12:04:36", "url": "https://files.pythonhosted.org/packages/61/71/168dfea05c7546e747eacad3f17bfb10d12e3745fc82796ee3ecf52543e7/django_setuptest-0.0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "26f7906a477d7c13625d9228e247a64e", "sha256": "66f8b3eb0062f7e7e7c155608b42d3f43ee5571f80feaf4585a3d9f6e4da6c76" }, "downloads": -1, "filename": "django-setuptest-0.0.4.tar.gz", "has_sig": false, "md5_digest": "26f7906a477d7c13625d9228e247a64e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5274, "upload_time": "2011-09-06T12:04:41", "url": "https://files.pythonhosted.org/packages/52/84/f908f4922d48ebc1a7828a35a2301d2df1a945de6f6af185248f454a9dac/django-setuptest-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "1f3e8b1f1dbf43ce061641ccf859023c", "sha256": "9de25da3475012d16c4d7aa6649d11e2e2f720949b5fdaa981598b5ac5b5a84e" }, "downloads": -1, "filename": "django_setuptest-0.0.5-py2.6.egg", "has_sig": false, "md5_digest": "1f3e8b1f1dbf43ce061641ccf859023c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 7139, "upload_time": "2011-09-06T14:24:20", "url": "https://files.pythonhosted.org/packages/48/9b/31a8b5f29bf63f54b4da474d37514a7bbc8f8ff8fe2dd30d9d8c8f04ad77/django_setuptest-0.0.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b4c43621c57ac51db5d75035f8bc9987", "sha256": "395ce97dc0f6e3824a11a4123a9ed0b4479105306ee11b34ea663bd5b0559a2e" }, "downloads": -1, "filename": "django_setuptest-0.0.5-py2.7.egg", "has_sig": false, "md5_digest": "b4c43621c57ac51db5d75035f8bc9987", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 7113, "upload_time": "2011-09-06T14:23:31", "url": "https://files.pythonhosted.org/packages/ed/07/14cb15cc16ab2f0ac5d357017d8948b7ad8d21dc89b31fa3fa90790185c6/django_setuptest-0.0.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1f6d484b2b54987b79f0cbc197b8e166", "sha256": "835f30c7c35a0147d08c1209374e3ab0484bf1e4e18d82f6de1b26745d142d9b" }, "downloads": -1, "filename": "django-setuptest-0.0.5.tar.gz", "has_sig": false, "md5_digest": "1f6d484b2b54987b79f0cbc197b8e166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5719, "upload_time": "2011-09-06T14:23:32", "url": "https://files.pythonhosted.org/packages/1d/1e/a04f871d4d6535bf3a4f81f1cc53ccc56069c6f527c867aa78525fa1d6ec/django-setuptest-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "d2c5dd1f58c2623b1ab99d93a4f6ce44", "sha256": "64d78402f245a8dba5b9ed235334ed69083c347a5af4a0ba52574b9b7a0bd0a5" }, "downloads": -1, "filename": "django_setuptest-0.0.6-py2.6.egg", "has_sig": false, "md5_digest": "d2c5dd1f58c2623b1ab99d93a4f6ce44", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 7173, "upload_time": "2011-09-08T09:41:57", "url": "https://files.pythonhosted.org/packages/43/e5/210db98df0de6b9355f5fbbfa32b2b1044c17237ef2e9e1c87170f0b4e11/django_setuptest-0.0.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9e7e790ce4b2052aa6c881da332e8328", "sha256": "3ee5f459ff274ba5b7682b707748c647d0d8cd77fd7f26d76cca86bc63617b3e" }, "downloads": -1, "filename": "django_setuptest-0.0.6-py2.7.egg", "has_sig": false, "md5_digest": "9e7e790ce4b2052aa6c881da332e8328", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 7157, "upload_time": "2011-09-08T09:41:34", "url": "https://files.pythonhosted.org/packages/94/6f/e29a9044058f35a44b3efee5d27351f233c656784b2236845c6b8b23c6fa/django_setuptest-0.0.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "64ce3f7a5e07d0adad3aa28faae2f52d", "sha256": "665d1574ed8a1aa11aac6fae22e43d6e82e7c36af6dc4297e56535d7411ec400" }, "downloads": -1, "filename": "django-setuptest-0.0.6.tar.gz", "has_sig": false, "md5_digest": "64ce3f7a5e07d0adad3aa28faae2f52d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5757, "upload_time": "2011-09-08T09:41:35", "url": "https://files.pythonhosted.org/packages/a2/f2/ec8823944e2a8e61a2e9d4dfbcbc992ec49fab298614d6c514609efcd6cf/django-setuptest-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "a302e001205c00bbfe71711c2aadf545", "sha256": "e09dc366f6fb72373e8142384f2bb846901a2377faf0d4518e7cb5d5924713b6" }, "downloads": -1, "filename": "django_setuptest-0.0.7-py2.7.egg", "has_sig": false, "md5_digest": "a302e001205c00bbfe71711c2aadf545", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 8509, "upload_time": "2012-06-04T16:06:44", "url": "https://files.pythonhosted.org/packages/d2/18/4edfae6e46d47bce18ddb5ce189dd1d6d5d87e5cedd5a47c525ac6b7a513/django_setuptest-0.0.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8adf87e62623529e587c9fd2b9f636f4", "sha256": "4de3d028413806e15bd8cf4910233c2fd46995a2dabde2571bf8e8fed2ed45ce" }, "downloads": -1, "filename": "django-setuptest-0.0.7.tar.gz", "has_sig": false, "md5_digest": "8adf87e62623529e587c9fd2b9f636f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6370, "upload_time": "2012-06-04T16:06:46", "url": "https://files.pythonhosted.org/packages/54/d5/12cb84682ffbc8bb24720fbcfba2b65a3d6d75572496762a3881201b1a43/django-setuptest-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "daf76171bc00edb8aa0cb3b609a7651c", "sha256": "816f5993df9950b522dfff1cd940a74be18fc1837b10011a1b5ebd2938b4425a" }, "downloads": -1, "filename": "django_setuptest-0.0.8-py2.7.egg", "has_sig": false, "md5_digest": "daf76171bc00edb8aa0cb3b609a7651c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 9772, "upload_time": "2012-06-13T17:11:09", "url": "https://files.pythonhosted.org/packages/a5/67/5f70122f2f579826a96afebce5ca684d12a4386270881ac064edf68c001a/django_setuptest-0.0.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "669d9d63890de765c2f6f03a6c85d038", "sha256": "2384bf0a3885bacfac26a127c6bef307296fe590d9c2acb56eacc3c5ef7727a6" }, "downloads": -1, "filename": "django-setuptest-0.0.8.tar.gz", "has_sig": false, "md5_digest": "669d9d63890de765c2f6f03a6c85d038", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6889, "upload_time": "2012-06-13T17:11:11", "url": "https://files.pythonhosted.org/packages/12/c9/ec8fbf7aca9f97ff91c7b3f72cde6e15beae029b38dd033aaaed754df9d4/django-setuptest-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "20dabed6b9f506c297894f8a8636631d", "sha256": "b4d12c68ce63d9a7a57126d0b61d270fb575f4f3393a2afcc6026489d696f81e" }, "downloads": -1, "filename": "django_setuptest-0.0.9-py2.7.egg", "has_sig": false, "md5_digest": "20dabed6b9f506c297894f8a8636631d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 11421, "upload_time": "2012-06-15T12:24:31", "url": "https://files.pythonhosted.org/packages/96/ef/4336afd7221e613f76c9a38540f9a79ef9a2b25eb9cb51da263d05b43a85/django_setuptest-0.0.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "dc34f2762aa115ccb598fc23e9ad8ec6", "sha256": "2d0353b4ac942682bd2e8d86f6bcc087cfd64affdf23b37a1b8d6287e2858d88" }, "downloads": -1, "filename": "django-setuptest-0.0.9.tar.gz", "has_sig": false, "md5_digest": "dc34f2762aa115ccb598fc23e9ad8ec6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8408, "upload_time": "2012-06-15T12:24:32", "url": "https://files.pythonhosted.org/packages/13/46/afa5a3607015f5414edf05a50af6e37493e7cd516c54bae83399c04dee3d/django-setuptest-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "343564b65c6ff9a2a72551dff328771c", "sha256": "2a7ce5039e8c76be725942f433e952803716614f704c7e1a8c67801d3e496c16" }, "downloads": -1, "filename": "django_setuptest-0.1.0-py2.7.egg", "has_sig": false, "md5_digest": "343564b65c6ff9a2a72551dff328771c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 11456, "upload_time": "2012-06-15T12:49:22", "url": "https://files.pythonhosted.org/packages/72/80/162202b0de861bc2cc26cebef07244d5b6d38ff7c915daaa63f33ac35b55/django_setuptest-0.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d8067704e41026ab5106c785df04b246", "sha256": "8a5ce3ee01c596d18251497daa64d27e267813419615440406418f1db874d4c4" }, "downloads": -1, "filename": "django-setuptest-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d8067704e41026ab5106c785df04b246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8413, "upload_time": "2012-06-15T12:49:23", "url": "https://files.pythonhosted.org/packages/1f/62/80c25e699d3ac2be9b94dccff57d0f4f2f71445795ef7975f54eb838b317/django-setuptest-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "483d6e6e532f802d797b9dfb9361489d", "sha256": "2f285282f631a5a3f6549f229e55c57164d9392e1bbd3334bb1d98719ec99f2b" }, "downloads": -1, "filename": "django_setuptest-0.1.1-py2.7.egg", "has_sig": false, "md5_digest": "483d6e6e532f802d797b9dfb9361489d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 11430, "upload_time": "2012-06-19T07:43:10", "url": "https://files.pythonhosted.org/packages/76/02/f3fc1abe7f1a66bfe33839ce76111987b21f52883999f5e68dbcae3681f5/django_setuptest-0.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ebfb4de2d2c13fda6d90a173255b4d49", "sha256": "de81d829fc851337c303531148963e9e8d4d6dd5cbf1332953f9f14b4a989b1a" }, "downloads": -1, "filename": "django-setuptest-0.1.1.tar.gz", "has_sig": false, "md5_digest": "ebfb4de2d2c13fda6d90a173255b4d49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7668, "upload_time": "2012-06-19T07:43:12", "url": "https://files.pythonhosted.org/packages/67/c1/6c4d772f799b1d310247c102f7ebdf9092aedbc75f5c38a899fa45e97ca6/django-setuptest-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0bad06b6fe4fc0456a835c716e1d8f84", "sha256": "a3026f4fbaefb8ac153b52c04d2573841204262f33b26b99b85ebe0758145040" }, "downloads": -1, "filename": "django_setuptest-0.1.2-py2.4.egg", "has_sig": false, "md5_digest": "0bad06b6fe4fc0456a835c716e1d8f84", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 7848, "upload_time": "2012-08-03T11:39:20", "url": "https://files.pythonhosted.org/packages/48/33/cbf0434911a8560f189c0ad65c200454d382234051a226d4a6b6cb8c4f83/django_setuptest-0.1.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "68e18bd6e8a7e4136dbee31fdc999e86", "sha256": "fd62cbbcd1f9bab1acc553dba7aa134a58145860ab029d673099f5ccc1e32ce1" }, "downloads": -1, "filename": "django-setuptest-0.1.2.tar.gz", "has_sig": false, "md5_digest": "68e18bd6e8a7e4136dbee31fdc999e86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7659, "upload_time": "2012-08-03T11:39:18", "url": "https://files.pythonhosted.org/packages/a8/16/16dc4cd08ca4b63e6d50afffd61fa7711c189c21e83f863b9b8b86dbc561/django-setuptest-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "58a6b5597782a58632e22cbaef9d136a", "sha256": "f814029258079179768168986e7f835793a308de5860695d97aa54c0112200b7" }, "downloads": -1, "filename": "django_setuptest-0.1.3-py2.7.egg", "has_sig": false, "md5_digest": "58a6b5597782a58632e22cbaef9d136a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 11560, "upload_time": "2013-05-23T08:39:01", "url": "https://files.pythonhosted.org/packages/be/b4/becc793bd564991aacf95c0bb012f6180b6cb0dc852f71099afc436bad26/django_setuptest-0.1.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f14955add998e66eb303829ec5f1da1d", "sha256": "5444ab2661998405bf936516d3885acc921a05f1077ece2430a8152b4d1a33a6" }, "downloads": -1, "filename": "django-setuptest-0.1.3.tar.gz", "has_sig": false, "md5_digest": "f14955add998e66eb303829ec5f1da1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7820, "upload_time": "2013-05-23T08:38:56", "url": "https://files.pythonhosted.org/packages/5e/c3/9ff2cb91ee3223f3d706ef49c7d7a75b243ac807308398b108f302b37244/django-setuptest-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "81bd66e14ed354c868cc6d10b56d3dec", "sha256": "71b58f3c4c38a271baf46bdb4c02b65c6817ceab8892133e37ae4bda8568c976" }, "downloads": -1, "filename": "django_setuptest-0.1.4-py2.7.egg", "has_sig": false, "md5_digest": "81bd66e14ed354c868cc6d10b56d3dec", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 11834, "upload_time": "2013-06-21T13:02:46", "url": "https://files.pythonhosted.org/packages/a0/85/7ef7e5a7c146344343526604b0dbefddc25ec7b5a4e70e823c241d76ec36/django_setuptest-0.1.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6a02d4dfa770581024c83f3f29512952", "sha256": "87701f9590d697617bd9e5b045d805fe14d21bb3045ca2a930d7e1a7cbc3187e" }, "downloads": -1, "filename": "django-setuptest-0.1.4.tar.gz", "has_sig": false, "md5_digest": "6a02d4dfa770581024c83f3f29512952", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7983, "upload_time": "2013-06-21T13:02:43", "url": "https://files.pythonhosted.org/packages/c6/ec/639d7d2c9c1ac6652a87975e222c6ab1305c5217c186574209d3d7c87e19/django-setuptest-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "fd0d81935757b538f8d92b4302a67b8e", "sha256": "33386b85385b3155e57f8de339584ce5b5011237f426066a7af0ee15263ce464" }, "downloads": -1, "filename": "django-setuptest-0.1.5.tar.gz", "has_sig": false, "md5_digest": "fd0d81935757b538f8d92b4302a67b8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8053, "upload_time": "2014-09-11T08:09:55", "url": "https://files.pythonhosted.org/packages/e4/1d/97ea7beff3bd6c37e1ff26e898ee9c261d431e352b50ab6dc4d3f548c1ed/django-setuptest-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "62f17c5a1fa1719b7f354b29ebfd2cbc", "sha256": "d93ea5764c6237c1c37e204069d01e243754a1649d67914fa3d002f0c9fe9277" }, "downloads": -1, "filename": "django_setuptest-0.1.6-py2.7.egg", "has_sig": false, "md5_digest": "62f17c5a1fa1719b7f354b29ebfd2cbc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12172, "upload_time": "2015-01-13T12:36:38", "url": "https://files.pythonhosted.org/packages/34/8c/9cd31bf7e7c4de2f872dd990d10611f347dba08906c6c9e07c389e9f9b2a/django_setuptest-0.1.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a94c391b9968673246f47699f1f24537", "sha256": "b3539c522ec111bd0cfb22ac958a430d8698160ad41784a3545d745b215d8a14" }, "downloads": -1, "filename": "django-setuptest-0.1.6.tar.gz", "has_sig": false, "md5_digest": "a94c391b9968673246f47699f1f24537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8103, "upload_time": "2015-01-13T12:36:34", "url": "https://files.pythonhosted.org/packages/c1/c4/6cf974762524c84729af31cfb426d82cf1bcba46d7097a6834d8a728cdbb/django-setuptest-0.1.6.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "97616c776e70b30310b8e20c05f2afab", "sha256": "af70b2c839652bcd5aa5e22efefa97f0e24acbfc0a522e629f0e95242dc471bf" }, "downloads": -1, "filename": "django_setuptest-0.2-py2.7.egg", "has_sig": false, "md5_digest": "97616c776e70b30310b8e20c05f2afab", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12392, "upload_time": "2015-10-30T07:21:03", "url": "https://files.pythonhosted.org/packages/c3/db/acefada6978647ba0c2f1f2be7c105d46c300d22e71ca3d1f24aea08197a/django_setuptest-0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3312a24978c49b2c1a5e25756effed3b", "sha256": "20993d16fbf22e638aba66f4b0152768096db8c0267402b998aa177ba709ce69" }, "downloads": -1, "filename": "django-setuptest-0.2.tar.gz", "has_sig": false, "md5_digest": "3312a24978c49b2c1a5e25756effed3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9413, "upload_time": "2015-10-30T07:20:55", "url": "https://files.pythonhosted.org/packages/ae/7e/fa27146c327ebc67a9d5e5eaa556bec12d813d6f75be977b290fae482095/django-setuptest-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "6a6c8b72506e6fc1ddb9e058d39e9591", "sha256": "eaa253ddaefc2aaf871fe7f87e4e9a196a9893e3ac6ad6b79f860cffa365c5b7" }, "downloads": -1, "filename": "django_setuptest-0.2.1-py2.7.egg", "has_sig": false, "md5_digest": "6a6c8b72506e6fc1ddb9e058d39e9591", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12452, "upload_time": "2016-01-04T09:21:39", "url": "https://files.pythonhosted.org/packages/96/b5/eda8843d513a9cce610f4b5440bc0b91f33b66cbe5a89f32fb195b4eb39d/django_setuptest-0.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5d2b004ac598852fe2283e970db831a4", "sha256": "214be1760c0eff4dc5a57d7cdcd83107805dbed7315f74246f061e8582c7cffd" }, "downloads": -1, "filename": "django-setuptest-0.2.1.tar.gz", "has_sig": false, "md5_digest": "5d2b004ac598852fe2283e970db831a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9457, "upload_time": "2016-01-04T09:21:28", "url": "https://files.pythonhosted.org/packages/93/5c/0a76e83e066942ca8caed6382095f218f14ae49b1631d16b262e4ce4ae89/django-setuptest-0.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6a6c8b72506e6fc1ddb9e058d39e9591", "sha256": "eaa253ddaefc2aaf871fe7f87e4e9a196a9893e3ac6ad6b79f860cffa365c5b7" }, "downloads": -1, "filename": "django_setuptest-0.2.1-py2.7.egg", "has_sig": false, "md5_digest": "6a6c8b72506e6fc1ddb9e058d39e9591", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12452, "upload_time": "2016-01-04T09:21:39", "url": "https://files.pythonhosted.org/packages/96/b5/eda8843d513a9cce610f4b5440bc0b91f33b66cbe5a89f32fb195b4eb39d/django_setuptest-0.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5d2b004ac598852fe2283e970db831a4", "sha256": "214be1760c0eff4dc5a57d7cdcd83107805dbed7315f74246f061e8582c7cffd" }, "downloads": -1, "filename": "django-setuptest-0.2.1.tar.gz", "has_sig": false, "md5_digest": "5d2b004ac598852fe2283e970db831a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9457, "upload_time": "2016-01-04T09:21:28", "url": "https://files.pythonhosted.org/packages/93/5c/0a76e83e066942ca8caed6382095f218f14ae49b1631d16b262e4ce4ae89/django-setuptest-0.2.1.tar.gz" } ] }