{ "info": { "author": "Sergey Chipiga", "author_email": "chipiga86@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "Allure Nose Adaptor\n===================\n\n.. image:: https://travis-ci.org/allure-framework/allure-nose-adaptor.svg?branch=master\n :alt: Build Status\n :target: https://travis-ci.org/allure-framework/allure-nose-adaptor/\n.. image:: https://pypip.in/v/nose-allure-plugin/badge.png\n :alt: Release Status\n :target: https://pypi.python.org/pypi/nose-allure-plugin\n.. image:: https://pypip.in/d/nose-allure-plugin/badge.png\n :alt: Downloads\n :target: https://pypi.python.org/pypi/nose-allure-plugin\n\nIt is a port of `pytest-allure-adaptor `_ for `nose framework `_.\n\nUsage\n=====\n\n.. code:: bash\n\n nosetests --with-allure --logdir=/path/to/put/results\n nosetests --with-allure --logdir=/path/to/put/results --not-clear-logdir\n\nOption \"--not-clear-logdir\" is useful with option \"--processes\" to prevent cleaning of logdr at the end of testing.\n\nSupported features\n==================\n\nAttachment\n----------\n\nTo attach some content to test report:\n\n.. code:: python\n\n import nose\n\n def test_foo():\n nose.allure.attach('my attach', 'Hello, World')\n\n\nStep\n----\n\nTo divide a test into steps:\n\n.. code:: python\n\n import nose\n\n def test_foo():\n with nose.allure.step('step one'):\n # do stuff\n\n with nose.allure.step('step two'):\n # do more stuff\n\nCan also be used as decorators. By default step name is generated from method name:\n\n.. code:: python\n\n import nose\n\n @nose.allure.step\n def make_test_data_foo():\n # do stuff\n\n def test_foo():\n assert make_some_data_foo() is not None\n\n @nose.allure.step('make_some_data_foo')\n def make_some_data_bar():\n # do another stuff\n\n def test_bar():\n assert make_some_data_bar() is not None\n\nEnvironment\n-----------\n\nYou can provide test `environment parameters `_ such as report name, browser or test server address to allure test report.\n\n.. code:: python\n\n import nose\n\n def test_dummy():\n nose.allure.environment(report='Allure report', browser=u'Firefox')\n\nSeverity\n--------\n\nAny test, class or module can be marked with different severity:\n\n.. code:: python\n\n import nose\n\n class TestBar(object):\n\n @nose.allure.severity(nose.allure.severity_level.CRITICAL)\n def test_bar(self):\n pass\n\n # custom severity\n @nose.allure.severity(\"hard\")\n def test_bar(self):\n pass\n\nTo run tests with concrete priority:\n\n.. code:: bash\n\n nosetests my_tests/ --with-allure --logdir=tmp --severity=\"critical, hard\"\n\n\nIssue\n-----\n\nIssues can be set for test.\n\n.. code:: python\n\n import nose\n\n @nose.allure.issue('http://jira.lan/browse/ISSUE-1')\n def test_foo():\n assert False\n\nFeatures & Stories\n------------------\n\nFeature and Story can be set for test.\n\n.. code:: python\n\n import nose\n\n @nose.allure.feature('Feature1')\n @nose.allure.story('Story1')\n def test_minor():\n assert False\n\n class TestBar(object):\n\n @nose.allure.feature('Feature2')\n @nose.allure.story('Story1')\n def test_bar(self):\n pass\n\nTo run tests by Feature or Story:\n\n.. code:: bash\n\n nosetests my_tests/ --with-allure --logdir=tmp --feature=\"Feature1, Feature2\"\n nosetests my_tests/ --with-allure --logdir=tmp --feature=\"Feature1, Feature2\" --story=\"Story1, Story2\"", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/allure-framework/allure-nose-adaptor", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "nose-allure-plugin", "package_url": "https://pypi.org/project/nose-allure-plugin/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/nose-allure-plugin/", "project_urls": { "Homepage": "https://github.com/allure-framework/allure-nose-adaptor" }, "release_url": "https://pypi.org/project/nose-allure-plugin/1.0.5/", "requires_dist": [ "nose", "pytest-allure-adaptor" ], "requires_python": "", "summary": "Nose plugin for allure framework", "version": "1.0.5" }, "last_serial": 2088726, "releases": { "0.1a0": [ { "comment_text": "", "digests": { "md5": "723825984acc8084a5a8026e7d3d743d", "sha256": "bc322f513ef3496425aebe46b54d10dc34883e40ad3c1cdbde6ffd5176864844" }, "downloads": -1, "filename": "nose_allure_plugin-0.1a0-cp27-none-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "723825984acc8084a5a8026e7d3d743d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2216, "upload_time": "2015-02-15T15:56:13", "url": "https://files.pythonhosted.org/packages/73/08/85efb428edda287528c5b0b501634f224b301454e6347ba917d3857153ed/nose_allure_plugin-0.1a0-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "3f2d12c1342111353b915070527cf6fe", "sha256": "579ee9623656f0170d5d513f6fb3b0202970b376d94b15ff444c51318d5fb67c" }, "downloads": -1, "filename": "nose-allure-plugin-0.1a0.tar.gz", "has_sig": false, "md5_digest": "3f2d12c1342111353b915070527cf6fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 916, "upload_time": "2015-02-15T15:56:09", "url": "https://files.pythonhosted.org/packages/30/9a/15ca3f694b31fa51d1f01c137707f8e717512edf372f8c8bcfcfdcbf40d7/nose-allure-plugin-0.1a0.tar.gz" } ], "0.1a1": [ { "comment_text": "", "digests": { "md5": "3a7393f9e8b063255489ac8fef91e9ef", "sha256": "b168117ca0718aec39469f1e98ec0f296cc4d2b21530b27d5511d59e7b2641be" }, "downloads": -1, "filename": "nose_allure_plugin-0.1a1-py2-none-any.whl", "has_sig": false, "md5_digest": "3a7393f9e8b063255489ac8fef91e9ef", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4380, "upload_time": "2015-02-15T16:14:48", "url": "https://files.pythonhosted.org/packages/da/e8/c4563af2bdeab987196049b464a5de6a9d8b7d58b9ac765b0d2f49548e97/nose_allure_plugin-0.1a1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0602c938001cdee83cde054eb65de4c", "sha256": "9fa944f1c493960e5d7f5a83d0a85577805b4bdbfc513c7984d1b1e3fabaf248" }, "downloads": -1, "filename": "nose-allure-plugin-0.1a1.tar.gz", "has_sig": false, "md5_digest": "b0602c938001cdee83cde054eb65de4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2359, "upload_time": "2015-02-15T16:14:45", "url": "https://files.pythonhosted.org/packages/82/9d/69ee7893b225f0e0d08bf6c3cf115e27c4d5680ed841b1bfa73bca40c772/nose-allure-plugin-0.1a1.tar.gz" } ], "0.1a2": [ { "comment_text": "", "digests": { "md5": "3709ac88096ca73d25455eabb5884680", "sha256": "a01dc7a1c9e4df21d3eb04f028ffd7125655d2b168a0c26cc10fbcccefe83745" }, "downloads": -1, "filename": "nose_allure_plugin-0.1a2-py2-none-any.whl", "has_sig": false, "md5_digest": "3709ac88096ca73d25455eabb5884680", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4401, "upload_time": "2015-02-15T16:41:38", "url": "https://files.pythonhosted.org/packages/cd/c3/852c6204da10ff5de4fd13fcc8c686509cc23d8a4fc33ea7655ce1cd29ee/nose_allure_plugin-0.1a2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b8a0106686ccc6a8882b5c5e388642e", "sha256": "3c8cc97c064b2f9b7888bf047ab0dda224d2f1b2e9f819d1e16e7d0aaf62c0b8" }, "downloads": -1, "filename": "nose-allure-plugin-0.1a2.tar.gz", "has_sig": false, "md5_digest": "9b8a0106686ccc6a8882b5c5e388642e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2577, "upload_time": "2015-02-15T16:41:35", "url": "https://files.pythonhosted.org/packages/41/9b/feee6bef117c4126165aad109bfa1d926909bd06cdc65a4a957ba3c14df8/nose-allure-plugin-0.1a2.tar.gz" } ], "0.1a3": [ { "comment_text": "", "digests": { "md5": "996204a2d186922a77b15c87084e1504", "sha256": "b8b95c34ba5345a2403dd6a9717f8187e519c52c98c7a169039d4ccfe028c534" }, "downloads": -1, "filename": "nose_allure_plugin-0.1a3-py2-none-any.whl", "has_sig": false, "md5_digest": "996204a2d186922a77b15c87084e1504", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4676, "upload_time": "2015-02-16T09:30:24", "url": "https://files.pythonhosted.org/packages/78/3b/f3755fffac8a9f962696ff10ac4025c6fae4926bf95531ec9c4301cae9d2/nose_allure_plugin-0.1a3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4754bc31c9cd8b55bb2b4141270ca754", "sha256": "4e21c495c360b9f172ae48946b29a703a5858c39f6096f138b99fcf622384ce5" }, "downloads": -1, "filename": "nose-allure-plugin-0.1a3.tar.gz", "has_sig": false, "md5_digest": "4754bc31c9cd8b55bb2b4141270ca754", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2842, "upload_time": "2015-02-16T09:30:21", "url": "https://files.pythonhosted.org/packages/09/9d/9d6e813368417b226148ec5789abd2914c6471d3cc78874f3921703c19a3/nose-allure-plugin-0.1a3.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "21928ad33817f3d3881cd224218d8475", "sha256": "fed15c996c60d4c680f06050a06837d8f7a967a417a44d4460005b9c67717433" }, "downloads": -1, "filename": "nose_allure_plugin-1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "21928ad33817f3d3881cd224218d8475", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6362, "upload_time": "2015-02-18T00:15:53", "url": "https://files.pythonhosted.org/packages/44/91/0802c4d7e045386299f0c37420524d64b8fb80bf753db9bef4e7cba87936/nose_allure_plugin-1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69663e321f4b224941046194f4637ba8", "sha256": "6173f280d7f1871aa63ad004fac81b20c5749e8eff66fb1390ff3ce464e5864e" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.tar.gz", "has_sig": false, "md5_digest": "69663e321f4b224941046194f4637ba8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3898, "upload_time": "2015-02-18T00:15:51", "url": "https://files.pythonhosted.org/packages/45/b8/d864ff3b3e231e63c5357fe7fdcf2444f888ecf0ea95685d503f437e7e86/nose-allure-plugin-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "a08b31b85836c9b809b6024b344da442", "sha256": "f3605b73ba0021ddc0a94e2572f81b137144c063bf80a2c35fd9c6c869dabe51" }, "downloads": -1, "filename": "nose_allure_plugin-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a08b31b85836c9b809b6024b344da442", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6492, "upload_time": "2015-03-03T22:36:14", "url": "https://files.pythonhosted.org/packages/7a/8d/e8a41c05d4d59698ddfb6a714d28f18519b577ae78ee2bff616655c803dd/nose_allure_plugin-1.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c87eb74c51983d00e4c5c571b9b2ec03", "sha256": "f51feb7cf4663fcaa68d7dc045edaf66a9d2c9de4f59411be20eec4001f60ab3" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.1.tar.gz", "has_sig": false, "md5_digest": "c87eb74c51983d00e4c5c571b9b2ec03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4005, "upload_time": "2015-03-03T22:36:12", "url": "https://files.pythonhosted.org/packages/9c/7a/998986112ddd2bf4f658cead62b86234a05b07aaf00c0ffe6c7fbd5deac7/nose-allure-plugin-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "7190588e04d0ec9ec51db74e82649358", "sha256": "2facfccf83445bac982e2805c03f78040b9a736fe6dae4d773acbb2165e27269" }, "downloads": -1, "filename": "nose_allure_plugin-1.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7190588e04d0ec9ec51db74e82649358", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 6664, "upload_time": "2015-08-25T15:07:57", "url": "https://files.pythonhosted.org/packages/92/40/898003fe7fe329260ead0ce5c1cb1d77b263ea966c63bfac2f27f60b75eb/nose_allure_plugin-1.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a141755cd8a9b0d644308f7657687d8", "sha256": "ca16f1c2c280cde77a61f60e8372e4bb9e9d34d4808d0b89b8d35b78a6f7c107" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.2.tar.gz", "has_sig": false, "md5_digest": "9a141755cd8a9b0d644308f7657687d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4176, "upload_time": "2015-08-25T15:07:53", "url": "https://files.pythonhosted.org/packages/2e/69/f62e7fe7f51295080cdfb675c7844b8c17843691f31d3bdc43aeecbdef02/nose-allure-plugin-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "9fa2ceec633d9d05f106d591f7d4414b", "sha256": "7224abfd0bc96c30f6a90c55f8ddaa043ee1aa9d20ac513c8bb2412641af41a7" }, "downloads": -1, "filename": "nose_allure_plugin-1.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "9fa2ceec633d9d05f106d591f7d4414b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 6850, "upload_time": "2015-08-31T10:14:42", "url": "https://files.pythonhosted.org/packages/8e/50/2e260ad3e056513a9ed0ba9775b4e09dd5433cc26af7eb6651bf3d3a06f6/nose_allure_plugin-1.0.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b8237ae9b68512c8b486070f9c83173", "sha256": "7f5a12c77811ebc3b3e7b694d919316c833b4f0e9eedceba1f9b11624793de61" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.3.tar.gz", "has_sig": false, "md5_digest": "9b8237ae9b68512c8b486070f9c83173", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4352, "upload_time": "2015-08-31T10:14:35", "url": "https://files.pythonhosted.org/packages/a5/0d/00d283e0c66a25f0697192c8d0fefac7a486a4fd851566ff3e70cc619472/nose-allure-plugin-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "4bd1165e7eb22e0c3cec0f18b8b09dba", "sha256": "3216f9e005a58819755f7c24c7867ad57735d0fc3c3f1143b519c086ba97633f" }, "downloads": -1, "filename": "nose_allure_plugin-1.0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "4bd1165e7eb22e0c3cec0f18b8b09dba", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7414, "upload_time": "2015-09-07T15:01:33", "url": "https://files.pythonhosted.org/packages/d2/ea/0c4a9f7f73088323fc2ab1b69f7c8dcd00380687176fd34cea445d7b06ff/nose_allure_plugin-1.0.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05cc6b3dfebe62440e45d14a04ed3ded", "sha256": "f7e02cfd1c14dc05d9d708258be9fb01ac12bf57ef5adfb368694adb791273b0" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.4.tar.gz", "has_sig": false, "md5_digest": "05cc6b3dfebe62440e45d14a04ed3ded", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4805, "upload_time": "2015-09-07T15:01:10", "url": "https://files.pythonhosted.org/packages/65/01/902d63f842308f30e36a38bc6d6e3a787d091c3a125e9391c85c36d2bb5b/nose-allure-plugin-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "deeaeb816152c0433411c918abd33f92", "sha256": "fc7c38d0d863b48fc0513d92a0e79758f174413ef89cbef9f9635e3b92749f8f" }, "downloads": -1, "filename": "nose_allure_plugin-1.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "deeaeb816152c0433411c918abd33f92", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7422, "upload_time": "2016-04-28T13:25:16", "url": "https://files.pythonhosted.org/packages/bb/f4/5394b22cf98ef48f7d5058945cc321abcb5d95e9bb7c0e2ca7dde34522ba/nose_allure_plugin-1.0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fe88e3844c758e57e1705dc57f6ca3d", "sha256": "2b9ff8596ca635a6209820fa5853c698de6a4d2afebcc067452cc4e93acc3f21" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.5.tar.gz", "has_sig": false, "md5_digest": "6fe88e3844c758e57e1705dc57f6ca3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4808, "upload_time": "2016-04-28T13:25:20", "url": "https://files.pythonhosted.org/packages/73/01/903ac3aecba73c2766b767c098891a3d8c60f01d5e47a14fff6c58562d68/nose-allure-plugin-1.0.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "deeaeb816152c0433411c918abd33f92", "sha256": "fc7c38d0d863b48fc0513d92a0e79758f174413ef89cbef9f9635e3b92749f8f" }, "downloads": -1, "filename": "nose_allure_plugin-1.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "deeaeb816152c0433411c918abd33f92", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7422, "upload_time": "2016-04-28T13:25:16", "url": "https://files.pythonhosted.org/packages/bb/f4/5394b22cf98ef48f7d5058945cc321abcb5d95e9bb7c0e2ca7dde34522ba/nose_allure_plugin-1.0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fe88e3844c758e57e1705dc57f6ca3d", "sha256": "2b9ff8596ca635a6209820fa5853c698de6a4d2afebcc067452cc4e93acc3f21" }, "downloads": -1, "filename": "nose-allure-plugin-1.0.5.tar.gz", "has_sig": false, "md5_digest": "6fe88e3844c758e57e1705dc57f6ca3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4808, "upload_time": "2016-04-28T13:25:20", "url": "https://files.pythonhosted.org/packages/73/01/903ac3aecba73c2766b767c098891a3d8c60f01d5e47a14fff6c58562d68/nose-allure-plugin-1.0.5.tar.gz" } ] }