{ "info": { "author": "Damien Flament", "author_email": "damien.flament@gmx.com", "bugtrack_url": null, "classifiers": [ "Framework :: Pytest", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Testing" ], "description": "pytest-notimplemented\n=====================\nA pytest plugin providing a marker for not implemented features and tests.\n\n@mark.notimplemented\n--------------------\n\nThe `notimplemented` marker is designed to be used for tests which should fail because\nthe feature is not yet implemented.\n\nAs tests on not implemented features should fail, it is just syntatic sugar for a\nstandard `xfail` marker with a \"Not implemented\" message.\n\n```python\n from pytest import mark\n\n @mark.notimplemented\n def test_foo(foo):\n assert foo.baz()\n\n @mark.xfail(\"Not implemented\")\n def test_bar(bar):\n assert bar.baz()\n```\n\n@mark.notwritten\n-----------------\n\nThe `notwritten` marker is is designed to be used for tests which are declared but not\ndefined. Those kind of tests are just placeholders to help the developer remember that\nthe behavior must be tested. And that marker helps on it.\n\nAs not written tests (or tests not finished to write) are impredictable, they must be\nskipped. That marker is just syntatic sugar for a standard `skip` marker with a\n\"Not written\" message.\n\n```python\n from pytest import mark\n\n @mark.notwritten\n def test_foo(foo):\n pass\n\n @mark.skip(\"Not written\")\n def test_bar(bar):\n pass\n```", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/neimad/pytest-notimplemented", "keywords": "pytest,plugin,marker,skip,implemented", "license": "GPL-3.0-or-later", "maintainer": "Damien Flament", "maintainer_email": "damien.flament@gmx.com", "name": "pytest-notimplemented", "package_url": "https://pypi.org/project/pytest-notimplemented/", "platform": "", "project_url": "https://pypi.org/project/pytest-notimplemented/", "project_urls": { "Homepage": "https://github.com/neimad/pytest-notimplemented", "Repository": "https://github.com/neimad/pytest-notimplemented" }, "release_url": "https://pypi.org/project/pytest-notimplemented/1.0.0/", "requires_dist": [ "pytest (>=5.1,<6.0)" ], "requires_python": ">=3.7,<4.0", "summary": "Pytest markers for not implemented features and tests.", "version": "1.0.0" }, "last_serial": 5737263, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "599ce8514d320eec25b4718d33f28588", "sha256": "e2103d597c8966e05e11b492bdeed841dd2bfbed7b7f7629f0e63036f396fb2e" }, "downloads": -1, "filename": "pytest_notimplemented-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "599ce8514d320eec25b4718d33f28588", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<4.0", "size": 15140, "upload_time": "2019-08-27T14:43:27", "url": "https://files.pythonhosted.org/packages/30/31/c5a976a8c930aa4356ad497372cec82238ff88a0c01c7bd5723d192bfc98/pytest_notimplemented-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "162e0c28b16b5d25df5ceefa305102c1", "sha256": "303d7390bcee50b291af6f16bbae8e42a7116fcd09eca3ef7ae1c13045955693" }, "downloads": -1, "filename": "pytest-notimplemented-1.0.0.tar.gz", "has_sig": false, "md5_digest": "162e0c28b16b5d25df5ceefa305102c1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 14497, "upload_time": "2019-08-27T14:43:24", "url": "https://files.pythonhosted.org/packages/c4/d4/b37d24eea42f48311842e2068e80a11ffb12f86e71940763400897af1be5/pytest-notimplemented-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "599ce8514d320eec25b4718d33f28588", "sha256": "e2103d597c8966e05e11b492bdeed841dd2bfbed7b7f7629f0e63036f396fb2e" }, "downloads": -1, "filename": "pytest_notimplemented-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "599ce8514d320eec25b4718d33f28588", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<4.0", "size": 15140, "upload_time": "2019-08-27T14:43:27", "url": "https://files.pythonhosted.org/packages/30/31/c5a976a8c930aa4356ad497372cec82238ff88a0c01c7bd5723d192bfc98/pytest_notimplemented-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "162e0c28b16b5d25df5ceefa305102c1", "sha256": "303d7390bcee50b291af6f16bbae8e42a7116fcd09eca3ef7ae1c13045955693" }, "downloads": -1, "filename": "pytest-notimplemented-1.0.0.tar.gz", "has_sig": false, "md5_digest": "162e0c28b16b5d25df5ceefa305102c1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 14497, "upload_time": "2019-08-27T14:43:24", "url": "https://files.pythonhosted.org/packages/c4/d4/b37d24eea42f48311842e2068e80a11ffb12f86e71940763400897af1be5/pytest-notimplemented-1.0.0.tar.gz" } ] }