{ "info": { "author": "Anthony Shaw", "author_email": "anthonyshaw@apache.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Pytest", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "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", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Testing" ], "description": "============\npytest-nunit\n============\n\n.. image:: https://pytest-dev.visualstudio.com/pytest-nunit/_apis/build/status/pytest-dev.pytest-nunit?branchName=master\n :target: https://pytest-dev.visualstudio.com/pytest-nunit/_build/latest?definitionId=7&branchName=master\n :alt: Build status\n\n.. image:: https://img.shields.io/pypi/v/pytest-nunit.svg\n :target: https://pypi.org/project/pytest-nunit\n :alt: PyPI version\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest-nunit.svg\n :target: https://pypi.org/project/pytest-nunit\n :alt: Python versions\n\n.. image:: https://img.shields.io/pypi/dm/pytest-nunit.svg\n :target: https://pypi.python.org/pypi/pytest-nunit/\n :alt: PyPI download month\n\n\nA pytest plugin for generating NUnit3 test result XML output\n\nThis plugin is in **beta**.\n\nCommand-line options\n--------------------\n\n``--nunit-xml``\n~~~~~~~~~~~~~~~\n\nA string value to set the file name of the generated XML file.\n\nArgument takes a path to the output file, either relative, or absolute.\n\n``--nunit-prefix``\n~~~~~~~~~~~~~~~~~~\n\nA string value to prefix all test case names the string provided.\n\nDefaults to an empty string.\n\nINI Options\n-----------\n\n``nunit_show_username``\n~~~~~~~~~~~~~~~~~~~~~~~\n\nBoolean value to include the system username in the test run properties.\n\nDefaults to ``false``\n\n``nunit_show_user_domain``\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nBoolean value to include the system user domain in the test run properties.\n\nDefaults to ``false``\n\n``nunit_suite_name``\n~~~~~~~~~~~~~~~~~~~~\n\n(Deprecated, value ignored)\n\nString value to set the test suite name.\n\nDefaults to ``'pytest'``\n\n``nunit_attach_on``\n~~~~~~~~~~~~~~~~~~~~\n\nEnumeration to control whether the attachments property is set on all test cases when the ``add_nunit_attachment`` is used.\n\nCan be one of:\n\n- ``any`` - Include test attachments for all outcomes (**Default**)\n- ``pass`` - Include test attachments for only passed test cases\n- ``fail`` - Include test attachments for only failed test cases\n\nFixtures\n--------\n\nThe following fixtures are made available by this plugin.\n\n``record_nunit_property``\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nCalling `record_nunit_property(key: str, value: str)` will result in `Property` tags being added to the `test-case` for the related node. \n\n.. code-block:: python\n\n def test_basic(record_nunit_property):\n record_nunit_property(\"test\", \"value\")\n assert 1 == 1\n\n``add_nunit_attachment``\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nAdd an attachment to a node test-case by calling the `add_nunit_attachment(path: str, description: str)` function with the filepath and a description.\n\n.. code-block:: python\n\n def test_attachment(add_nunit_attachment):\n pth = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'fixture.gif')\n add_nunit_attachment(path, \"peanut butter jelly time\")\n assert 1 == 1\n\nUsage with Azure Pipelines\n--------------------------\n\nAdd the following steps to your build job to publish the results to Azure Pipelines:\n\n.. code-block:: yaml\n\n - script: \"pip install pytest-nunit\"\n\n - script: |\n python -m pytest tests -v --nunit-xml=test-results.xml\n continueOnError: true\n\n - task: PublishTestResults@2\n inputs:\n testResultsFormat: NUnit\n testResultsFiles: '**/test-results.xml'\n\nSkipped Tests\n~~~~~~~~~~~~~\n\nSkipped tests will have the ``reason`` attribute (if provided) included in the results.\n\n.. image:: https://github.com/pytest-dev/pytest-nunit/raw/master/docs/source/_static/screen_skips.png\n :width: 70%\n\n\nAttachments\n~~~~~~~~~~~\n\nUsing the ``add_nunit_attachment`` fixture will render any attachments in the \"attachments\" tab inside the Tests console:\n\n.. image:: https://github.com/pytest-dev/pytest-nunit/raw/master/docs/source/_static/screen_attachments.png\n :width: 70%\n\nFailures and xfails\n~~~~~~~~~~~~~~~~~~~\n\nAny failed tests, whether as xpass or xfail, will have the error output and comparison, as well as the failing line in the stack trace.\n\n.. image:: https://github.com/pytest-dev/pytest-nunit/raw/master/docs/source/_static/screen_fails.png\n :width: 70%\n\n\nCompatibility with other plugins\n--------------------------------\n\nx-dist\n~~~~~~\n\nWhen running with `-f`, make sure to add in your pytest config file (setup.cfg etc)\n`looponfailroots = testdir` to exclude xml report files from being watched for changes.\n\nCheck looponfails_\n\n\n.. _looponfails: https://docs.pytest.org/en/3.0.1/xdist.html#running-tests-in-looponfailing-mode\n\n\nHistory\n-------\n\n0.5.2 (30th August 2019)\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Bugfix - Escape tabbed unicode characters from stdout feed from being in CDATA output\n\n0.5.1 (30th August 2019)\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Bugfix - Fixed cause of crash for tests that could be discovered but never executed\n\n0.5.0 (30th August 2019)\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Docstrings of nodes (functions) are set as the label for TestCase elements (contribution by @mikeattara)\n- Pytest -k keyword filters are added to the test run filter element under ``name``.\n- Pytest -m marker filters are added to the test run filter element under ``namespace``.\n- Any path filters are added to the test run filter element under ``test``.\n- Each Python module containing tests is now a separate ``test-suite`` element, instead of having one large suite\n- Docstrings of modules are set as the label for TestSuite elements\n\n0.4.0 (28th August 2019)\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added user domain (contribution by @williano)\n- Added tests and help for xdist execution (contribution by @mei-li)\n- Dynamically use the keyword list when generating schema to avoid reserved word collision (contribution by @gerhardtdatsomor)\n- Add method names, classnames and module names to output (contribution by @adekanyetomie)\n- Added locale and uiculture properties to runtime output (contribution by @terrameijar)\n- Added ``nunit_attach_on`` INI option to control when attachments are included in test cases.\n\n0.3.0 (15th July 2019)\n~~~~~~~~~~~~~~~~~~~~~~\n\n- Added ``--nunit-prefix`` option.\n\n0.2.1 (15th July 2019)\n~~~~~~~~~~~~~~~~~~~~~~\n\n- First stable release\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/pytest-dev/pytest-nunit", "keywords": "", "license": "MIT", "maintainer": "Anthony Shaw", "maintainer_email": "anthonyshaw@apache.org", "name": "pytest-nunit", "package_url": "https://pypi.org/project/pytest-nunit/", "platform": "", "project_url": "https://pypi.org/project/pytest-nunit/", "project_urls": { "Homepage": "https://github.com/pytest-dev/pytest-nunit" }, "release_url": "https://pypi.org/project/pytest-nunit/0.5.2/", "requires_dist": [ "pytest (>=3.5.0)", "attrs", "enum34 (>=1.1.6) ; python_version==\"2.7\"" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "A pytest plugin for generating NUnit3 test result XML output", "version": "0.5.2" }, "last_serial": 5758022, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "062b4d6f1a0b66c1ecc227a8554721ef", "sha256": "8e06abdab071d9ebead28f2bbc5d4529459a691045bf0b258db443fdc83a36ff" }, "downloads": -1, "filename": "pytest_nunit-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "062b4d6f1a0b66c1ecc227a8554721ef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2485, "upload_time": "2019-07-07T23:18:26", "url": "https://files.pythonhosted.org/packages/d4/83/b942789440ceeaf81f7dfbab487a740562427c3039f50242f55e1dec8a4d/pytest_nunit-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a54b2839fdfe4199a267e0708a30048", "sha256": "ff35bf9b271b878fbb303fe195f24de0bea10fe090262b35401f75abdb523127" }, "downloads": -1, "filename": "pytest-nunit-0.0.1.tar.gz", "has_sig": false, "md5_digest": "6a54b2839fdfe4199a267e0708a30048", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2235, "upload_time": "2019-07-07T23:18:29", "url": "https://files.pythonhosted.org/packages/b2/f0/fac22587f8c88b7e2b39495410a2826fbb0af21e3ae3fc72ba96931083b2/pytest-nunit-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "0ffa852cb25d193b693d2ff2158a1755", "sha256": "8f74340d7bc2312c44533acfad2bd3524a6a5ab11fac939546dd8bce85cd7917" }, "downloads": -1, "filename": "pytest_nunit-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "0ffa852cb25d193b693d2ff2158a1755", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2697, "upload_time": "2019-07-14T01:54:16", "url": "https://files.pythonhosted.org/packages/8e/cd/76ee6c5cc288662f4a5be32eacb5d48d89a9f830605c676571bee1508aba/pytest_nunit-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e37ac3be6141f332928f41413bcf160", "sha256": "769bdf77ec828c4bb617e7fd8e8c0ef4491b2f897d8754acf30905ef4ca4dcf5" }, "downloads": -1, "filename": "pytest-nunit-0.0.2.tar.gz", "has_sig": false, "md5_digest": "8e37ac3be6141f332928f41413bcf160", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2559, "upload_time": "2019-07-14T01:54:18", "url": "https://files.pythonhosted.org/packages/84/03/dd536213192c56aa5e0083bd6a2e945d0027fccb1e59e8e0578ec577eb99/pytest-nunit-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "ca93f029e3d0515f95824f11044d0d5a", "sha256": "42cd0d982e43137f64f6dce639cc778df10d273adc14a57c7ee918a416864b73" }, "downloads": -1, "filename": "pytest_nunit-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ca93f029e3d0515f95824f11044d0d5a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3115, "upload_time": "2019-07-14T07:46:58", "url": "https://files.pythonhosted.org/packages/06/bc/8b022e425a02a1fdc90f8b47ab5fc8501729cf96efa2d71b9cd9b46dc79b/pytest_nunit-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3fcbf309e663b0283e15eba011eeeb83", "sha256": "fb60dc45db6e6cfb44ea8e9b589a3feea67ed088facacde34351395e03eb5268" }, "downloads": -1, "filename": "pytest-nunit-0.0.3.tar.gz", "has_sig": false, "md5_digest": "3fcbf309e663b0283e15eba011eeeb83", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3069, "upload_time": "2019-07-14T07:46:59", "url": "https://files.pythonhosted.org/packages/26/26/466cde5d009077040b94bd2893f336e73edd8c53a713f69ec06d0ecc2968/pytest-nunit-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "cf9eebd19b35e888266f9086dd96f996", "sha256": "b31e162d90b2931f9cdde5add981f4186c42fe963f3fee0f62b7aea94d87b98b" }, "downloads": -1, "filename": "pytest_nunit-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "cf9eebd19b35e888266f9086dd96f996", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3117, "upload_time": "2019-07-14T09:20:55", "url": "https://files.pythonhosted.org/packages/b2/a9/5b542483c9ddda5139df073a42b461e6ceb17f0113ec06f6b93721145bd1/pytest_nunit-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "849d15bac2e751708dc24e109005b905", "sha256": "b1fc293ed5a81d264445745caa169030c9a51ba4d634eb1e6dd29a9a0a54c121" }, "downloads": -1, "filename": "pytest-nunit-0.0.4.tar.gz", "has_sig": false, "md5_digest": "849d15bac2e751708dc24e109005b905", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3069, "upload_time": "2019-07-14T09:20:57", "url": "https://files.pythonhosted.org/packages/e3/7a/9dfaf44e583342ef15efb3a6c13d5bddd3c9063918821f554d14e7f81c37/pytest-nunit-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "2852a0e52bccfb71c9ca02c035c5f3bb", "sha256": "03f49995fcf6fd32626e2daa9fb9cd6d913cda37466cb31822033218d4e76dfc" }, "downloads": -1, "filename": "pytest_nunit-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2852a0e52bccfb71c9ca02c035c5f3bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10971, "upload_time": "2019-07-14T09:59:15", "url": "https://files.pythonhosted.org/packages/11/c2/ef3f1395f06e4b8f577a98761b4690d09494333898cce284bc3302cbbe2a/pytest_nunit-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8d8c164e404fac784153bc6b64251fb", "sha256": "4e0086a752fd92acae69f6c51f54cd5bd669261fb4cce858e68e23cba84c1028" }, "downloads": -1, "filename": "pytest-nunit-0.0.5.tar.gz", "has_sig": false, "md5_digest": "b8d8c164e404fac784153bc6b64251fb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10652, "upload_time": "2019-07-14T09:59:17", "url": "https://files.pythonhosted.org/packages/53/bc/8601b74f49c7012da9b4186d001a3ecd74ea85ac837351a146d5eb8ca56c/pytest-nunit-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "1a12777b7a12979d77a9b528d61e33ec", "sha256": "8751ed12f99f3a73815dceb10ba426e5f2ae3356bf85601863a9e7c48f8a509d" }, "downloads": -1, "filename": "pytest_nunit-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "1a12777b7a12979d77a9b528d61e33ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10978, "upload_time": "2019-07-15T00:20:43", "url": "https://files.pythonhosted.org/packages/95/02/b451d1420fcb4e14efdef29b60c08229a4c0d31b2c5fbfffecc8067bfd9f/pytest_nunit-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "822bf73b33d10e325d0f593df7458348", "sha256": "6ab9069a357ff0c84a4de2fd482eba566501659933c26c9e5116dc47cbe93a88" }, "downloads": -1, "filename": "pytest-nunit-0.0.6.tar.gz", "has_sig": false, "md5_digest": "822bf73b33d10e325d0f593df7458348", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10871, "upload_time": "2019-07-15T00:20:45", "url": "https://files.pythonhosted.org/packages/16/ac/4bc0f415cd0cd73a5592b6c6721f5043d8211711c6be6a0103cd77f2b65c/pytest-nunit-0.0.6.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "6f8b112cc8583333669bc038d45f38eb", "sha256": "7988c5716748dab00b39a05bf3dbb1e5a82b6ee4430c41f5e89c78a6185a1812" }, "downloads": -1, "filename": "pytest_nunit-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6f8b112cc8583333669bc038d45f38eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11008, "upload_time": "2019-07-15T00:42:10", "url": "https://files.pythonhosted.org/packages/a9/f3/b227430ceb8bd722d31da72e5c47187b0a30e64ac5659a1f755b773c2401/pytest_nunit-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b0f46b2495969bad903585743adb2ed", "sha256": "b3eaa4d8b2ef404145ffba852755fa0019e19f90bdea49ba928b56060bdce564" }, "downloads": -1, "filename": "pytest-nunit-0.1.0.tar.gz", "has_sig": false, "md5_digest": "9b0f46b2495969bad903585743adb2ed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11013, "upload_time": "2019-07-15T00:42:12", "url": "https://files.pythonhosted.org/packages/28/47/27cb63c7aca3c55f3f7942745dba06301a346ea69956fc6d7136a3f97d2d/pytest-nunit-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "9fd7f3af6a408001ba69c9c52997ba06", "sha256": "9837044bf7247ce34bdddceb39d46bc9ae0b6896c6f8ba629b0cc383c670c5e9" }, "downloads": -1, "filename": "pytest_nunit-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9fd7f3af6a408001ba69c9c52997ba06", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11251, "upload_time": "2019-07-15T02:47:39", "url": "https://files.pythonhosted.org/packages/29/43/80805ac30f2c833bb75f3fbfb8ed8c4b1f21fdbdafe21ec7d3bd46471b78/pytest_nunit-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59d3cfe64c63e303c5054b79ca8ab28c", "sha256": "cb034701d74d0ecd0daf50ab2dceb05f99602826fc70eb032688ed3b8c460d46" }, "downloads": -1, "filename": "pytest-nunit-0.2.0.tar.gz", "has_sig": false, "md5_digest": "59d3cfe64c63e303c5054b79ca8ab28c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11532, "upload_time": "2019-07-15T02:47:41", "url": "https://files.pythonhosted.org/packages/9b/a4/cf8595c19513f266ba10b1efdec923da2ac3745804092cce0c9d04cd57d9/pytest-nunit-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "196347bb919918f99fd737d609cd89fa", "sha256": "e8690299e4d21ec9ee89f85b3b4303b23bace3441544b86a933077e944cea8c5" }, "downloads": -1, "filename": "pytest_nunit-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "196347bb919918f99fd737d609cd89fa", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11324, "upload_time": "2019-07-15T03:38:24", "url": "https://files.pythonhosted.org/packages/2e/c9/a3d8f1f2ac44c4da5c1e8d508d1fdea1d790ea9bce3c8a410191b1d7dd32/pytest_nunit-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f745841af7b2db88c075163e7bf3e659", "sha256": "1304a31005f9f577877fb6ee578d46a094f80c5ae62a8bd1de1567377c208744" }, "downloads": -1, "filename": "pytest_nunit-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f745841af7b2db88c075163e7bf3e659", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11323, "upload_time": "2019-07-15T03:38:26", "url": "https://files.pythonhosted.org/packages/ce/0b/9554f1034e8100a665f9f7947a65a04239e92157f07b014c7bda368037de/pytest_nunit-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8c1f90760301f0a68cf090cb1f3326f", "sha256": "94cc487c437fae6a43c128d66c216e0b965fd5762ec80270eb65ae7b7f29d8dd" }, "downloads": -1, "filename": "pytest-nunit-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b8c1f90760301f0a68cf090cb1f3326f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11625, "upload_time": "2019-07-15T03:38:28", "url": "https://files.pythonhosted.org/packages/98/29/fec20d90e1b158a3a617f5af3d54dd3738396f20e5487fbe4f8a8ee59ea8/pytest-nunit-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d15933b75573f8d0d73339904e49aaf4", "sha256": "72b1fe6cbcdc0847e10e8c999c60e57d0fb05a5758affe034115e6006408d489" }, "downloads": -1, "filename": "pytest_nunit-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d15933b75573f8d0d73339904e49aaf4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11424, "upload_time": "2019-07-15T04:39:53", "url": "https://files.pythonhosted.org/packages/b5/1f/017b38518dbc17fb4e1d10d62eede60d913ab62573e1502efac85c72acfb/pytest_nunit-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5daf7159674cf6c06771a197bcf276cd", "sha256": "8c8c55848d121cd78fea8ce84bcea88787c683e7ffa0a9bf6ac76b681e0659c1" }, "downloads": -1, "filename": "pytest-nunit-0.3.0.tar.gz", "has_sig": false, "md5_digest": "5daf7159674cf6c06771a197bcf276cd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11848, "upload_time": "2019-07-15T04:39:55", "url": "https://files.pythonhosted.org/packages/05/44/763a881b5e4ae7a1fb5b76ddafe4bab12956acfb86b0996e5197ea94da51/pytest-nunit-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "fdf57e46b3db5ef8cc8f3f38d6906ef8", "sha256": "012d5370040eba24e4ce5d9a52581f766a65b0967d56bdc2ce8f23002619999e" }, "downloads": -1, "filename": "pytest_nunit-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fdf57e46b3db5ef8cc8f3f38d6906ef8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 12513, "upload_time": "2019-08-28T03:36:10", "url": "https://files.pythonhosted.org/packages/0f/bc/7414df30cb9708486b49960558e8494663558e75269067218e655b67021c/pytest_nunit-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36cccf04b50e50064a5499954ca7e682", "sha256": "af7f38e59e2eb6aae84ecf65fe3012eb08a49b2e93f71c34e3a4b2c9ad93785f" }, "downloads": -1, "filename": "pytest-nunit-0.4.0.tar.gz", "has_sig": false, "md5_digest": "36cccf04b50e50064a5499954ca7e682", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 13686, "upload_time": "2019-08-28T03:36:12", "url": "https://files.pythonhosted.org/packages/34/2b/8b5d985d2f12df2df3962f9a1be9a9408ffe855f435ef8bd141123d99e1c/pytest-nunit-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "eac2f629993e58c225317899100241a5", "sha256": "00983794f70ca70d54f2ff3185f4e45d38597f43a95981af8be663210634dbec" }, "downloads": -1, "filename": "pytest_nunit-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "eac2f629993e58c225317899100241a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 13567, "upload_time": "2019-08-30T01:01:25", "url": "https://files.pythonhosted.org/packages/2f/84/81df64bc58ee35066eedd7890077003c278e6930b0e5be2565c982fe4311/pytest_nunit-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79f1f09f9d1dea5adc952133851349c6", "sha256": "c022438f96a286d6b9f9471e8cdef804538b1217870dc8ee3624e105a456d87d" }, "downloads": -1, "filename": "pytest-nunit-0.5.0.tar.gz", "has_sig": false, "md5_digest": "79f1f09f9d1dea5adc952133851349c6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 14849, "upload_time": "2019-08-30T01:01:27", "url": "https://files.pythonhosted.org/packages/4c/0b/c407143548d76b0f251d4ecdaabc711c97030b3614fcd081e4f756381838/pytest-nunit-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "d680a156074a3d18dd75d1205089962a", "sha256": "b8a621dbb5b5f79bc597823a824d83031c86d6a5d55d20291b0b289db295eb54" }, "downloads": -1, "filename": "pytest_nunit-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d680a156074a3d18dd75d1205089962a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 13627, "upload_time": "2019-08-30T01:24:07", "url": "https://files.pythonhosted.org/packages/e6/61/7ab6d561e66e62bfe41341776c42717ee9f114809b23ccd05828319519fb/pytest_nunit-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d8cdcc276e45d5a7f4f5a367bd3967a", "sha256": "d39863b405c73fa218738ee3c2d9699143d1d8a581ffd03d3e42135f5a9d8f7d" }, "downloads": -1, "filename": "pytest-nunit-0.5.1.tar.gz", "has_sig": false, "md5_digest": "5d8cdcc276e45d5a7f4f5a367bd3967a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 14985, "upload_time": "2019-08-30T01:24:09", "url": "https://files.pythonhosted.org/packages/ae/26/de4e5fd91709147e17fd665d0ecb27521efb0edc97c0615220be9189026a/pytest-nunit-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "96b45654090bdd578d7ebd7442222fd5", "sha256": "6b52e15673c76a29dc41dae5d5feb228fb933aa61a99c65746838a1de6955e46" }, "downloads": -1, "filename": "pytest_nunit-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "96b45654090bdd578d7ebd7442222fd5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 13721, "upload_time": "2019-08-30T02:50:09", "url": "https://files.pythonhosted.org/packages/6d/c0/a1fa00ec956488ae5fed07c5764fe325cc1f3e14cc91451fd913d3581cae/pytest_nunit-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5fc20332c92d8436cef8dcf0533f8a89", "sha256": "3c667a6747a991d8db8737d5620c77f3722d6782728b70346c2edbe00aabaf4c" }, "downloads": -1, "filename": "pytest-nunit-0.5.2.tar.gz", "has_sig": false, "md5_digest": "5fc20332c92d8436cef8dcf0533f8a89", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 15142, "upload_time": "2019-08-30T02:50:11", "url": "https://files.pythonhosted.org/packages/0a/3b/a3c095741a53eb3dc0aeb24b94cba136b3620e8c31c09188847c43b5f4f1/pytest-nunit-0.5.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "96b45654090bdd578d7ebd7442222fd5", "sha256": "6b52e15673c76a29dc41dae5d5feb228fb933aa61a99c65746838a1de6955e46" }, "downloads": -1, "filename": "pytest_nunit-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "96b45654090bdd578d7ebd7442222fd5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 13721, "upload_time": "2019-08-30T02:50:09", "url": "https://files.pythonhosted.org/packages/6d/c0/a1fa00ec956488ae5fed07c5764fe325cc1f3e14cc91451fd913d3581cae/pytest_nunit-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5fc20332c92d8436cef8dcf0533f8a89", "sha256": "3c667a6747a991d8db8737d5620c77f3722d6782728b70346c2edbe00aabaf4c" }, "downloads": -1, "filename": "pytest-nunit-0.5.2.tar.gz", "has_sig": false, "md5_digest": "5fc20332c92d8436cef8dcf0533f8a89", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 15142, "upload_time": "2019-08-30T02:50:11", "url": "https://files.pythonhosted.org/packages/0a/3b/a3c095741a53eb3dc0aeb24b94cba136b3620e8c31c09188847c43b5f4f1/pytest-nunit-0.5.2.tar.gz" } ] }