{ "info": { "author": "Edward Easton", "author_email": "eeaston@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Testing", "Topic :: Utilities" ], "description": "Pytest Verbose Parametrize\n==========================\n\nPytest parametrize hook to generate ids for parametrized tests that are\na little more descriptive than the default (which just outputs id\nnumbers).\n\nInstallation\n------------\n\nInstall with your favourite package manager, and this plugin will\nautomatically be enabled:\n\n.. code:: bash\n\n pip install pytest-verbose-parametrize\n # or .. \n easy_install pytest-verbose-parametrize\n\nUsage\n-----\n\n.. code:: python\n\n import pytest\n\n @pytest.mark.parametrize(('f', 't'), [(sum, list), (len, int)])\n def test_foo(f, t):\n assert isinstance(f([[1], [2]]), t)\n\nIn this example, the test ids will be generated as\n``test_foo[sum-list]``, ``test_foo[len-int]`` instead of the default\n``test_foo[1-2]``, ``test_foo[3-4]``.\n\n.. code:: bash\n\n $ py.test -v \n ============================= test session starts ======================================\n platform linux2 -- Python 2.7.3 -- py-1.4.25 -- pytest-2.6.4 \n plugins: verbose-parametrize\n collected 2 items \n\n unit/test_example.py::test_foo[sum-list] FAILED\n unit/test_example.py::test_foo[len-int] PASSED\n\n\nChangelog\n---------\n\n1.7.0\n~~~~~\n\n- All: Support pytest >= 4.0.0\n- All: Support Python 3.7\n- pytest-server-fixtures: if host not defined on your machine, default\n to localhost\n- pytest-server-fixture: Pin to rethinkdb < 2.4.0 due to upstream API\n changes\n- pytest-verbose-parametrize: Add support for revamped marker\n infrastructure\n- pytest-verbose-parametrize: Fix integration tests to support pytest\n >= 4.1.0\n- pytest-virtualenv: Add virtualenv as install requirement. Fixes #122\n- pytest-webdriver: Fix RemovedInPytest4Warning using getfixturevalue\n- circleci: Fix checks by skipping coverall submission for developer\n without push access\n- wheels: Generate universal wheels installable with both python 2.x\n and 3.x\n- dist: Remove support for building and distributing \\*.egg files\n- VagrantFile: Install python 3.7 and initialize python 3.7 by default\n- Fix DeprecationWarning warnings using \"logger.warning()\" function\n\n1.6.2 (2019-02-21)\n~~~~~~~~~~~~~~~~~~\n\n- pytest-server-fixtures: suppress stacktrace if kill() is called\n- pytest-server-fixtures: fix random port logic in TestServerV2\n\n1.6.1 (2019-02-12)\n~~~~~~~~~~~~~~~~~~\n\n- pytest-server-fixtures: fix exception when attempting to access\n hostname while server is not started\n\n1.6.0 (2019-02-12)\n~~~~~~~~~~~~~~~~~~\n\n- pytest-server-fixtures: added previously removed TestServerV2.kill()\n function\n- pytest-profiling: pin more-itertools==5.0.0 in integration tests, as\n that's a PY3 only release\n\n1.5.1 (2019-01-24)\n~~~~~~~~~~~~~~~~~~\n\n- pytest-verbose-parametrize: fixed unicode parameters when using\n ``@pytest.mark.parametrize``\n\n1.5.0 (2019-01-23)\n~~~~~~~~~~~~~~~~~~\n\n- pytest-server-fixtures: made postgres fixtures and its tests\n optional, like all other fixtures\n- pytest-server-fixtures: reverted a fix for pymongo deprecation\n warning, as this will break compatibility with pymongo 3.6.0\n- pytest-server-fixtures: dropped RHEL5 support in httpd\n\n1.4.1 (2019-01-18)\n~~~~~~~~~~~~~~~~~~\n\n- pytest-server-fixtures: server fixture binary path specified in ENV\n now only affect server class 'thread'\n\n1.4.0 (2019-01-15)\n~~~~~~~~~~~~~~~~~~\n\n- Fixing python 3 compatibility in Simple HTTP Server fixture\n- Fixed broken tests in pytest-profiling\n- Pinned pytest<4.0.0 until all deprecation warnings are fixed.\n- pytest-webdriver: replaced deprecated phantomjs with headless Google\n Chrome.\n- Add Vagrantfile to project to make test environment portable.\n- Add .editorconfig file to project.\n- pytest-server-fixtures: add TestServerV2 with Docker and Kubernetes\n support.\n- pytest-server-fixtures: fix for an issue where MinioServer is not\n cleaned up after use.\n- pytest-server-fixtures: fix deprecation warnings when calling\n pymongo.\n- pytest-server-fixtures: close pymongo client on MongoTestServer\n teardown.\n- pytest-server-fixtures: upgrade Mongo, Redis and RethinkDB to\n TestServerV2.\n- coveralls: fix broken coveralls\n\n1.3.1 (2018-06-28)\n~~~~~~~~~~~~~~~~~~\n\n- Use pymongo list\\_database\\_names() instead of the deprecated\n database\\_names(), added pymongo>=3.6.0 dependency\n\n1.3.0 (2017-11-17)\n~~~~~~~~~~~~~~~~~~\n\n- Fixed workspace deletion when teardown is None\n- Fixed squash of root logger in pytest-listener\n- Added S3 Minio fixture (many thanks to Gavin Bisesi)\n- Added Postgres fixture (many thanks to Gavin Bisesi)\n- Use requests for server fixtures http gets as it handles redirects\n and proxies properly\n\n1.2.12 (2017-8-1)\n~~~~~~~~~~~~~~~~~\n\n- Fixed regression on cacheing ephemeral hostname, some clients were\n relying on this. This is now optional.\n\n1.2.11 (2017-7-21)\n~~~~~~~~~~~~~~~~~~\n\n- Fix for OSX binding to illegal local IP range (Thanks to Gavin\n Bisesi)\n- Setup and Py3k fixes for pytest-profiling (Thanks to xoviat)\n- We no longer try and bind port 5000 when reserving a local IP host,\n as someone could have bound it to 0.0.0.0\n- Fix for #46 sourcing gprof2dot when the local venv has not been\n activated\n\n1.2.10 (2017-2-23)\n~~~~~~~~~~~~~~~~~~\n\n- Handle custom Pytest test items in pytest-webdriver\n\n1.2.9 (2017-2-23)\n~~~~~~~~~~~~~~~~~\n\n- Add username into mongo server fixture tempdir path to stop\n collisions on shared multiuser filesystems\n\n1.2.8 (2017-2-21)\n~~~~~~~~~~~~~~~~~\n\n- Return function results in shutil.run.run\\_as\\_main\n\n1.2.7 (2017-2-20)\n~~~~~~~~~~~~~~~~~\n\n- More handling for older versions of path.py\n- Allow virtualenv argument passing in pytest-virtualenv\n\n1.2.6 (2017-2-16 )\n~~~~~~~~~~~~~~~~~~\n\n- Updated devpi server server setup for devpi-server >= 2.0\n- Improvements for random port picking\n- HTTPD server now binds to 0.0.0.0 by default to aid Selenium-style\n testing\n- Updated mongodb server args for mongodb >= 3.2\n- Corrections for mongodb fixture config and improve startup logic\n- Added module-scoped mongodb fixture\n- Handling for older versions of path.py\n- Fix for #40 where tests that chdir break pytest-profiling\n\n1.2.5 (2016-12-09)\n~~~~~~~~~~~~~~~~~~\n\n- Improvements for server runner host and port generation, now supports\n random local IPs\n- Bugfix for RethinkDB fixture config\n\n1.2.4 (2016-11-14)\n~~~~~~~~~~~~~~~~~~\n\n- Bugfix for pymongo extra dependency\n- Windows compatibility fix for pytest-virtualenv (Thanks to\n Jean-Christophe Fillion-Robin for PR)\n- Fix symlink handling for\n pytest-shutil.cmdline.get\\_real\\_python\\_executable\n\n1.2.3 (2016-11-7)\n~~~~~~~~~~~~~~~~~\n\n- Improve resiliency of Mongo fixture startup checks\n\n1.2.2 (2016-10-27)\n~~~~~~~~~~~~~~~~~~\n\n- Python 3 compatibility across most of the modules\n- Fixed deprecated Path.py imports (Thanks to Bryan Moscon)\n- Fixed deprecated multicall in pytest-profiling (Thanks to Paul van\n der Linden for PR)\n- Added devpi-server fixture to create an index per test function\n- Added missing licence file\n- Split up httpd server fixture config so child classes can override\n loaded modules easier\n- Added 'preserve\\_sys\\_path' argument to TestServer base class which\n exports the current python sys.path to subprocesses.\n- Updated httpd, redis and jenkins runtime args and paths to current\n Ubuntu spec\n- Ignore errors when tearing down workspaces to avoid race conditions\n in 'shutil.rmtree' implementation\n\n1.2.1 (2016-3-1)\n~~~~~~~~~~~~~~~~\n\n- Fixed pytest-verbose-parametrize for latest version of py.test\n\n1.2.0 (2016-2-19)\n~~~~~~~~~~~~~~~~~\n\n- New plugin: git repository fixture\n\n1.1.1 (2016-2-16)\n~~~~~~~~~~~~~~~~~\n\n- pytest-profiling improvement: escape illegal characters in .prof\n files (Thanks to Aarni Koskela for the PR)\n\n1.1.0 (2016-2-15)\n~~~~~~~~~~~~~~~~~\n\n- New plugin: devpi server fixture\n- pytest-profiling improvement: overly-long .prof files are saved as\n the short hash of the test name (Thanks to Vladimir Lagunov for PR)\n- Changed default behavior of workspace.run() to not use a subshell for\n security reasons\n- Corrected virtualenv.run() method to handle arguments the same as the\n parent method workspace.run()\n- Removed deprecated '--distribute' from virtualenv args\n\n1.0.1 (2015-12-23)\n~~~~~~~~~~~~~~~~~~\n\n- Packaging bugfix\n\n1.0.0 (2015-12-21)\n~~~~~~~~~~~~~~~~~~\n\n- Initial public release\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/manahl/pytest-plugins", "keywords": "", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "pytest-verbose-parametrize", "package_url": "https://pypi.org/project/pytest-verbose-parametrize/", "platform": "unix", "project_url": "https://pypi.org/project/pytest-verbose-parametrize/", "project_urls": { "Homepage": "https://github.com/manahl/pytest-plugins" }, "release_url": "https://pypi.org/project/pytest-verbose-parametrize/1.7.0/", "requires_dist": [ "pytest", "six", "mock ; extra == 'tests'", "pytest-virtualenv ; extra == 'tests'", "coverage ; extra == 'tests'" ], "requires_python": "", "summary": "More descriptive output for parametrized py.test tests", "version": "1.7.0" }, "last_serial": 5325323, "releases": { "1.0.0": [], "1.2.1": [ { "comment_text": "", "digests": { "md5": "110aad6f81cbf07c87ff39e53cd9f9f3", "sha256": "1ab0fe5b3477aa8baa772e9a501c7c2545e59154a3c4c0f8c969861142cc0525" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.2.1-py2.7.egg", "has_sig": false, "md5_digest": "110aad6f81cbf07c87ff39e53cd9f9f3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3085, "upload_time": "2016-03-01T12:19:54", "url": "https://files.pythonhosted.org/packages/3d/14/80f214b90832725085795bd460679db082869d7033c693927524b628c9d8/pytest_verbose_parametrize-1.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cefd19311d891725bdf7fd40ba9e4855", "sha256": "00f03df8d3ab78ba85d5a21a4d2af7e9051a0ceafd4e2bdf131f855c823caa45" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "cefd19311d891725bdf7fd40ba9e4855", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5281, "upload_time": "2016-03-01T12:19:39", "url": "https://files.pythonhosted.org/packages/99/74/f102b4ac89a65301c3d315a11882f5546481b9a12b2fc3716428c3daaf34/pytest_verbose_parametrize-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0fb45c80b95fde607609e2329b9c5b7", "sha256": "b53b25d04dca4c9c754f48ae557b4dea4ddf0a64b9be7faf65858790553a4e50" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.2.1.tar.gz", "has_sig": false, "md5_digest": "d0fb45c80b95fde607609e2329b9c5b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5724, "upload_time": "2016-03-01T12:19:24", "url": "https://files.pythonhosted.org/packages/8b/8e/b0b73d0bdfb3dab74e8ab4b94815c0436de58a1754a27a6f26caf55854b1/pytest-verbose-parametrize-1.2.1.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "7ee46f2717b3f665b5f5b5ec1251f2ab", "sha256": "611eec5ec7a828d9aa9eebb3ca54746dd3ea4b67adfd971fe5da30210affad9a" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.2.11-py2.7.egg", "has_sig": false, "md5_digest": "7ee46f2717b3f665b5f5b5ec1251f2ab", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4133, "upload_time": "2017-07-21T15:08:47", "url": "https://files.pythonhosted.org/packages/74/9a/4e09d28e75904ad5cbb88ac8a8eb320fc12db6aafe8c035022a042b53f51/pytest_verbose_parametrize-1.2.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d2bd39624e6a7afa26751c34dfd71414", "sha256": "072fb35cdcc70424ad56e49a032670c5b58499bbd536dc7bc85d3641c3ade70d" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.2.11-py2-none-any.whl", "has_sig": false, "md5_digest": "d2bd39624e6a7afa26751c34dfd71414", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7311, "upload_time": "2017-07-21T15:08:45", "url": "https://files.pythonhosted.org/packages/12/f4/0f06092dfb0080f70a02dd3afd67389e4005f32f23167999e2d370fc4c85/pytest_verbose_parametrize-1.2.11-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0ab6791cd96a1eab1fb1aff51d023af", "sha256": "931a270115418fd4a0be71dfc06d42e6483dc51aeba4db01eec827bcc66523a1" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.2.11.tar.gz", "has_sig": false, "md5_digest": "e0ab6791cd96a1eab1fb1aff51d023af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7335, "upload_time": "2017-07-21T15:08:48", "url": "https://files.pythonhosted.org/packages/ed/2f/58ca83a29262a864dfedd5add8dc21d940ba1312ca740d541245058b2d4c/pytest-verbose-parametrize-1.2.11.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "322267d10cbc15f6841586719e538af1", "sha256": "b3a27f08bfffd140e372492043a7522168b2b15d3b491915b741c7f3a7e5ca19" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.2.2-py2.7.egg", "has_sig": false, "md5_digest": "322267d10cbc15f6841586719e538af1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3395, "upload_time": "2016-10-27T12:49:34", "url": "https://files.pythonhosted.org/packages/7e/2c/8adbf45535555bff3fd3c32c088cd4235861093757f31079b335447a704c/pytest_verbose_parametrize-1.2.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9facb84fbc996c79ea4395237f05066d", "sha256": "c45f137569bcf30b951d89217a44ce503b35025ac4aef0ed55930f17d706e8e0" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "9facb84fbc996c79ea4395237f05066d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5895, "upload_time": "2016-10-27T12:49:32", "url": "https://files.pythonhosted.org/packages/93/85/8f4c7572b67d63f79c10ac3ad514a6b92d3280fecdcc8ac9e58515fcc585/pytest_verbose_parametrize-1.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "196e7a02150122b407d23d099292f7f8", "sha256": "964825b501e0572e0c32713918f68eba6a135025ad53bbf59bc22c1391f5dcf1" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.2.2.tar.gz", "has_sig": false, "md5_digest": "196e7a02150122b407d23d099292f7f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5956, "upload_time": "2016-10-27T12:49:29", "url": "https://files.pythonhosted.org/packages/18/c4/b8213348e0bcbdf0d9e2556570f0deec03f272315a8d8d6db8c79a9f23d4/pytest-verbose-parametrize-1.2.2.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "f199aeda34d8547b08680c41fc7038b2", "sha256": "b1a7b9cd5a241391008f868a69c1164d2dac440305c49900968d416d60e39829" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.3.0-py2.7.egg", "has_sig": false, "md5_digest": "f199aeda34d8547b08680c41fc7038b2", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4493, "upload_time": "2018-03-08T13:11:52", "url": "https://files.pythonhosted.org/packages/06/3b/6e35e67577dec1332c6e4b50b25f17ce401c0ae7feea35abf9f395acb8a5/pytest_verbose_parametrize-1.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "800dd1cebf20c15ae8e1e0c651ec0d82", "sha256": "df1fc4b7270b5a476fe6989713dac869f5c54ef00a8a2e84848fd2dd8d708e96" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "800dd1cebf20c15ae8e1e0c651ec0d82", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7954, "upload_time": "2018-03-08T13:11:14", "url": "https://files.pythonhosted.org/packages/bc/a9/89318bc78777e999dcd9a570857c193392c71fab9a702c438d308eebb8ec/pytest_verbose_parametrize-1.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7c89dfd0f741ffc6024fcb5bb2d7b26", "sha256": "61273e3c96ef180354c03acf68c1ac9c8500784289d9602dce3fd8b5bf9791fb" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.3.0.tar.gz", "has_sig": false, "md5_digest": "d7c89dfd0f741ffc6024fcb5bb2d7b26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8876, "upload_time": "2018-03-08T13:11:53", "url": "https://files.pythonhosted.org/packages/5f/b7/a5105340db347211d8d52d6cd8c830ce3f862ecd2e812df822de5c778ed8/pytest-verbose-parametrize-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "338d90fd749143b4724d4533cb4b21e3", "sha256": "9923339630cf9fac174e559d3a2d0fb3051f4f6108800dbb1556641ad4d39eea" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.4.0-py2.7.egg", "has_sig": false, "md5_digest": "338d90fd749143b4724d4533cb4b21e3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4844, "upload_time": "2019-01-15T08:39:51", "url": "https://files.pythonhosted.org/packages/7f/40/bfe64d9984131d50b8ae09556539469bf6f39ca1d2a337107159668fdbb8/pytest_verbose_parametrize-1.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a7562f0d0f65ab6eff6cff89b93c844c", "sha256": "a06b1e850b120778d8582bbce445dabbd0a61d3af2c0d1bfc4dcef2220538da1" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a7562f0d0f65ab6eff6cff89b93c844c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5825, "upload_time": "2019-01-15T08:39:14", "url": "https://files.pythonhosted.org/packages/97/35/18f6a1b5274ae3b55a817deac6540367e757dace0c93904e923c0a75bbed/pytest_verbose_parametrize-1.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35ce0b1979882b81519d29cba648f4f3", "sha256": "c89be76ce47606d617951b664c097c0e036dbc098baaa09bea02b45e0a76d72d" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.4.0.tar.gz", "has_sig": false, "md5_digest": "35ce0b1979882b81519d29cba648f4f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9478, "upload_time": "2019-01-15T08:39:52", "url": "https://files.pythonhosted.org/packages/ec/63/aca5fe1fdee9ea4887a4d67efd727c55e647c22e91e05dc02268176377bd/pytest-verbose-parametrize-1.4.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "5af9487852f50fce66e16387109c1f45", "sha256": "5fb49e38450e87129136c01aceb0716fb77b5aa95a1a45b85823e5bf4a5f086c" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.5.1-py2.7.egg", "has_sig": false, "md5_digest": "5af9487852f50fce66e16387109c1f45", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5045, "upload_time": "2019-01-24T14:51:06", "url": "https://files.pythonhosted.org/packages/68/9d/15d52bfb6e1a0a542547870856e98e9987330fa978bb29cfeb1920f8b40a/pytest_verbose_parametrize-1.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8d380a53180bae34693ac77dca516cc3", "sha256": "17191aad440065885decd970fd83952db683be69953e7acd95719de52d7849a8" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8d380a53180bae34693ac77dca516cc3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 6017, "upload_time": "2019-01-24T14:51:04", "url": "https://files.pythonhosted.org/packages/a2/5b/c319d0ded8c15d1e7100ba932c0efc72b2aa5749c81fe0764d08f60eb8d1/pytest_verbose_parametrize-1.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2d68bcfa24aafa7a151607a174307bf", "sha256": "d74ac35b7262e262894839d9ed8321ad8821b2a00d84c549119ccdf79a7806c4" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.5.1.tar.gz", "has_sig": false, "md5_digest": "d2d68bcfa24aafa7a151607a174307bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9902, "upload_time": "2019-01-24T14:51:07", "url": "https://files.pythonhosted.org/packages/d5/44/6cfd346177009dd2fcc41eea46b730bac85ce392010ccbda2a824b435779/pytest-verbose-parametrize-1.5.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "926ca3d48328639cd8895ba2a7a8b4f5", "sha256": "4c4a2060c91ba498ea0d2699329d01a018c1e1211c136b0d9fac75bec1607647" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.7.0-py2.7.egg", "has_sig": false, "md5_digest": "926ca3d48328639cd8895ba2a7a8b4f5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5700, "upload_time": "2019-05-28T06:37:15", "url": "https://files.pythonhosted.org/packages/14/fc/b62bf5ced9e57a23ae93eb7e4bc7696701d88db9bfa210929601e211fb3c/pytest_verbose_parametrize-1.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "75081dd5eed193de9884aed095904562", "sha256": "b3e6a27e187e13f7dae1d5665e4673aec7dbb26ce5960ffeb04d201b4d7b99f2" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75081dd5eed193de9884aed095904562", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6654, "upload_time": "2019-05-28T06:36:18", "url": "https://files.pythonhosted.org/packages/bb/20/7b53c7b9e402dba96faec0616194f9b07f3e5798d3be624965b9ad8e6a73/pytest_verbose_parametrize-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66fb9aa6f13c1d06ee8eccaa6dc565eb", "sha256": "9efb1b603cdb5930835069a50652c5c6605c44b3d3baf2030bc555ffcfbe594b" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.7.0-py3.6.egg", "has_sig": false, "md5_digest": "66fb9aa6f13c1d06ee8eccaa6dc565eb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 5700, "upload_time": "2019-05-28T06:37:17", "url": "https://files.pythonhosted.org/packages/ea/24/b2c5c5d1818da252724b0665ad86130602a4fe269371468ac2ab29ebd646/pytest_verbose_parametrize-1.7.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9dd929f796f7e7faf4c0e4a4ceba0436", "sha256": "b85b374a5747607a8e9ffca9732e152859b8e7115bcb10f25c31c60d403146e8" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.7.0.tar.gz", "has_sig": false, "md5_digest": "9dd929f796f7e7faf4c0e4a4ceba0436", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12301, "upload_time": "2019-05-28T06:37:18", "url": "https://files.pythonhosted.org/packages/ff/46/86cf758cd0a402ffd96162921da1fc6d5997973b969ea7b9a55233b83a57/pytest-verbose-parametrize-1.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "926ca3d48328639cd8895ba2a7a8b4f5", "sha256": "4c4a2060c91ba498ea0d2699329d01a018c1e1211c136b0d9fac75bec1607647" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.7.0-py2.7.egg", "has_sig": false, "md5_digest": "926ca3d48328639cd8895ba2a7a8b4f5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5700, "upload_time": "2019-05-28T06:37:15", "url": "https://files.pythonhosted.org/packages/14/fc/b62bf5ced9e57a23ae93eb7e4bc7696701d88db9bfa210929601e211fb3c/pytest_verbose_parametrize-1.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "75081dd5eed193de9884aed095904562", "sha256": "b3e6a27e187e13f7dae1d5665e4673aec7dbb26ce5960ffeb04d201b4d7b99f2" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75081dd5eed193de9884aed095904562", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6654, "upload_time": "2019-05-28T06:36:18", "url": "https://files.pythonhosted.org/packages/bb/20/7b53c7b9e402dba96faec0616194f9b07f3e5798d3be624965b9ad8e6a73/pytest_verbose_parametrize-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66fb9aa6f13c1d06ee8eccaa6dc565eb", "sha256": "9efb1b603cdb5930835069a50652c5c6605c44b3d3baf2030bc555ffcfbe594b" }, "downloads": -1, "filename": "pytest_verbose_parametrize-1.7.0-py3.6.egg", "has_sig": false, "md5_digest": "66fb9aa6f13c1d06ee8eccaa6dc565eb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 5700, "upload_time": "2019-05-28T06:37:17", "url": "https://files.pythonhosted.org/packages/ea/24/b2c5c5d1818da252724b0665ad86130602a4fe269371468ac2ab29ebd646/pytest_verbose_parametrize-1.7.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9dd929f796f7e7faf4c0e4a4ceba0436", "sha256": "b85b374a5747607a8e9ffca9732e152859b8e7115bcb10f25c31c60d403146e8" }, "downloads": -1, "filename": "pytest-verbose-parametrize-1.7.0.tar.gz", "has_sig": false, "md5_digest": "9dd929f796f7e7faf4c0e4a4ceba0436", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12301, "upload_time": "2019-05-28T06:37:18", "url": "https://files.pythonhosted.org/packages/ff/46/86cf758cd0a402ffd96162921da1fc6d5997973b969ea7b9a55233b83a57/pytest-verbose-parametrize-1.7.0.tar.gz" } ] }