{ "info": { "author": "Thorsten Lockert", "author_email": "tholo@sigmasoft.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "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", "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Testing" ], "description": "pytest plugin for efficiently checking PEP8 compliance \n======================================================\n\n.. image:: https://img.shields.io/pypi/v/pytest-flake8.svg\n :target: https://pypi.python.org/pypi/pytest-flake8\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest-flake8.svg\n :target: https://pypi.python.org/pypi/pytest-flake8\n\n.. image:: https://img.shields.io/pypi/implementation/pytest-flake8.svg\n :target: https://pypi.python.org/pypi/pytest-flake8\n\n.. image:: https://img.shields.io/pypi/status/pytest-flake8.svg\n :target: https://pypi.python.org/pypi/pytest-flake8\n\n.. image:: https://travis-ci.org/tholo/pytest-flake8.svg?branch=master\n :target: https://travis-ci.org/tholo/pytest-flake8\n\n.. image:: https://img.shields.io/github/issues/tholo/pytest-flake8.svg\n :target: https://github.com/tholo/pytest-flake8/issues\n\n.. image:: https://img.shields.io/github/issues-pr/tholo/pytest-flake8.svg\n :target: https://github.com/tholo/pytest-flake8/pulls\n\nUsage\n-----\n\nInstall by running the command::\n\n pip install pytest-flake8\n\nAfter installing it, when you run tests with the option::\n\n pytest --flake8\n\nevery file ending in ``.py`` will be discovered and checked with\nflake8.\n\n.. note::\n\n If optional flake8 plugins are installed, those will\n be used automatically. No provisions have been made for\n configuring these via `pytest`_.\n\n.. warning::\n\n Running flake8 tests on your project is likely to cause a number \n of issues. The plugin allows one to configure on a per-project and\n per-file basis which errors or warnings to ignore, see\n flake8-ignore_.\n\n.. _flake8-ignore:\n\nConfiguring FLAKE8 options per project and file\n-----------------------------------------------\n\nMaximum line length can be configured for the whole project\nby adding a ``flake8-max-line-length`` option to your ``setup.cfg``\nor ``tox.ini`` file like this::\n\n # content of setup.cfg\n [pytest]\n flake8-max-line-length = 99\n\nNote that the default will be what naturally comes with `flake8`_\n(which it turn gets its default from `pycodestyle`_).\n\nYou may configure flake8-checking options for your project\nby adding an ``flake8-ignore`` entry to your ``setup.cfg``\nor ``tox.ini`` file like this::\n\n # content of setup.cfg\n [pytest]\n flake8-ignore = E201 E231\n\nThis would globally prevent complaints about two whitespace issues.\nRerunning with the above example will now look better::\n\n $ pytest -q --flake8\n collecting ... collected 1 items\n .\n 1 passed in 0.01 seconds\n\nIf you have some files where you want to specifically ignore \nsome errors or warnings you can start a flake8-ignore line with \na glob-pattern and a space-separated list of codes::\n\n # content of setup.cfg\n [pytest]\n flake8-ignore = \n *.py E201\n doc/conf.py ALL\n\nSo if you have a conf.py like this::\n\n # content of doc/conf.py\n\n func ( [1,2,3]) #this line lots PEP8 errors :)\n\nthen running again with the previous example will show a single\nfailure and it will ignore doc/conf.py alltogether::\n\n $ pytest --flake8 -v # verbose shows what is ignored\n ======================================= test session starts ========================================\n platform darwin -- Python 2.7.6 -- py-1.4.26 -- pytest-2.7.0 -- /Users/tholo/Source/pytest/bin/python\n cachedir: /Users/tholo/Source/pytest/src/verify/.cache\n rootdir: /Users/tholo/Source/angular/src/verify, inifile: setup.cfg\n plugins: flake8, cache\n collected 1 items\n\n myfile.py PASSED\n\n ========================================= 1 passed in 0.00 seconds =========================================\n\nNote that doc/conf.py was not considered or imported.\n\nNotes\n-----\n\nThe repository of this plugin is at https://github.com/tholo/pytest-flake8\n\nFor more info on `pytest`_ see http://pytest.org\n\nThe code is partially based on Ronny Pfannschmidt's `pytest-codecheckers`_ plugin.\n\n.. _`pytest`: http://pytest.org\n.. _`flake8`: https://pypi.python.org/pypi/flake8\n.. _`pycodestyle`: https://pypi.python.org/pypi/pycodestyle\n.. _`pytest-codecheckers`: https://pypi.python.org/pypi/pytest-codecheckers\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/tholo/pytest-flake8", "keywords": "", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "pytest-flake8", "package_url": "https://pypi.org/project/pytest-flake8/", "platform": "", "project_url": "https://pypi.org/project/pytest-flake8/", "project_urls": { "Homepage": "https://github.com/tholo/pytest-flake8" }, "release_url": "https://pypi.org/project/pytest-flake8/1.0.4/", "requires_dist": [ "flake8 (>=3.5)", "pytest (>=3.5)" ], "requires_python": "", "summary": "pytest plugin to check FLAKE8 requirements", "version": "1.0.4" }, "last_serial": 4765242, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "844dfc5d8d624824dfc310b4ccd8f681", "sha256": "d2ecd5343ae56b4ac27ffa09d88111cc97dd7fdbc881231dfcdbc852f9ea5121" }, "downloads": -1, "filename": "pytest_flake8-0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "844dfc5d8d624824dfc310b4ccd8f681", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 6284, "upload_time": "2015-03-31T19:54:55", "url": "https://files.pythonhosted.org/packages/cd/16/4ce5c9e295578444a1562cb49ade4976a00afa312054f560f163064fb7ad/pytest_flake8-0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0529feaba4368c4a2ba15507ab58c55", "sha256": "6b30619538937f274a373ace5fe2895def15066f0d3bad5784458ae0bce61a60" }, "downloads": -1, "filename": "pytest-flake8-0.1.tar.gz", "has_sig": true, "md5_digest": "d0529feaba4368c4a2ba15507ab58c55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6269, "upload_time": "2015-03-31T19:54:28", "url": "https://files.pythonhosted.org/packages/25/ad/5af4922e569a7ddb40f08c9531be0cdbb489b01b4bf8cc270cbd3c7c47ac/pytest-flake8-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "db1a84db312006d4346fad27ef7cd412", "sha256": "c1b8e571c3ea32c4624a4af69d0acf7d8ff322e93ac58d9354ee8d5c4fa54be5" }, "downloads": -1, "filename": "pytest_flake8-0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db1a84db312006d4346fad27ef7cd412", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14899, "upload_time": "2016-02-12T01:12:10", "url": "https://files.pythonhosted.org/packages/8b/1d/f24a354c76db0c37e3e67a56e8c3bdd4eb560909ab26a21ee902763e8124/pytest_flake8-0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd2d1f779b409e2e4e6b7b7089cba261", "sha256": "58ab00be8d0361827f011cb2ba31ec3770f0797c18fcff48ed93d73fe058f418" }, "downloads": -1, "filename": "pytest-flake8-0.2.tar.gz", "has_sig": false, "md5_digest": "bd2d1f779b409e2e4e6b7b7089cba261", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6674, "upload_time": "2016-02-12T01:12:17", "url": "https://files.pythonhosted.org/packages/f0/e6/fc5a510a67f3972f6ca121a60933ce22606002462d1d5489c72330491426/pytest-flake8-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "198db3a1c6f54d15d5465a0430414d81", "sha256": "cbdfe04587124778326bd300affd1dfe1125e22d547d3bf38b7c4eb4b417e5ce" }, "downloads": -1, "filename": "pytest_flake8-0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "198db3a1c6f54d15d5465a0430414d81", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6688, "upload_time": "2016-04-18T22:52:38", "url": "https://files.pythonhosted.org/packages/f2/37/df4ad8202de6b640f50f652cf03899e51cf6ed5de94e594665c88ec32502/pytest_flake8-0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5cb2ab5b4778c6682dca82eeac5080e", "sha256": "ad9c7d6b99b047951abd9d431eba83361100780e287b93e51e1d63681e3bff71" }, "downloads": -1, "filename": "pytest-flake8-0.3.tar.gz", "has_sig": false, "md5_digest": "e5cb2ab5b4778c6682dca82eeac5080e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6758, "upload_time": "2016-04-18T22:52:43", "url": "https://files.pythonhosted.org/packages/35/5e/510894ecdc3549864232cad6955fa1cd1f20aa0379848207df2518727d3e/pytest-flake8-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "c4db0bdfe1ca3e1713588fe1bfbdb9da", "sha256": "d61658b12528572c9422f6c67e292f28680bced0483097c8f5276cf4bb538e91" }, "downloads": -1, "filename": "pytest_flake8-0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c4db0bdfe1ca3e1713588fe1bfbdb9da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6690, "upload_time": "2016-04-19T17:55:50", "url": "https://files.pythonhosted.org/packages/e3/c7/0bad7ad4f75abe340be3e8b492558fd762677383e26a2688814487f3cd88/pytest_flake8-0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c5ddc7330e40d7a462c9a0bff89d2964", "sha256": "c4b08629afbdb57afd9cdcef6b40331d8a674108d82c75afcc149c06d47c40b8" }, "downloads": -1, "filename": "pytest-flake8-0.4.tar.gz", "has_sig": false, "md5_digest": "c5ddc7330e40d7a462c9a0bff89d2964", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6758, "upload_time": "2016-04-19T17:55:55", "url": "https://files.pythonhosted.org/packages/7b/64/39497fb3bd5475b5eee524745faa37e5bb3d16582d631d0453b838608fa1/pytest-flake8-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "4365e77f54eca4f1ee67d51f821cae9e", "sha256": "fa3e06370c72b2737d4fd64b28ccb8e66bf3ffa9706b9a0caf9d7abab96bd248" }, "downloads": -1, "filename": "pytest_flake8-0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4365e77f54eca4f1ee67d51f821cae9e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6747, "upload_time": "2016-04-21T18:34:43", "url": "https://files.pythonhosted.org/packages/4d/c1/16f9414ba7bafefb37d4888b4e221b6070f1e1119d540b3aa1522e8e60a4/pytest_flake8-0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47a56b62c54f19fd5341aea9780f02c7", "sha256": "6e3a7c7734bc3d5dec1fa0783146f326b1bf8a7fa21987c139376440ede2bbfc" }, "downloads": -1, "filename": "pytest-flake8-0.5.tar.gz", "has_sig": false, "md5_digest": "47a56b62c54f19fd5341aea9780f02c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6884, "upload_time": "2016-04-21T18:36:25", "url": "https://files.pythonhosted.org/packages/f4/e2/00a85a94039ae04af92de68bd17224722904c99fbe2ec3dfaf0d7531b211/pytest-flake8-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "4cecb6f4e711118c6ec22dcd749192ec", "sha256": "bf4a9b3b8ca699cf2f84492ec491e4e057ba9af8bce1aec7fd9095b6d4d2d946" }, "downloads": -1, "filename": "pytest_flake8-0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4cecb6f4e711118c6ec22dcd749192ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6861, "upload_time": "2016-07-26T21:19:47", "url": "https://files.pythonhosted.org/packages/96/6e/004a3ac5ffbd27b93855406e19b0bcf60263d9ccad677eaca3f11a283745/pytest_flake8-0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a39c21294125ffa67525e7c5320852b2", "sha256": "0661fab608214a48dcecdaab1e64124af28a1c1f5dd5ba4a4bcbe8aede0f5553" }, "downloads": -1, "filename": "pytest-flake8-0.6.tar.gz", "has_sig": false, "md5_digest": "a39c21294125ffa67525e7c5320852b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6996, "upload_time": "2016-07-26T21:19:50", "url": "https://files.pythonhosted.org/packages/31/13/b03a5b9d76b0bf666c1ac8b502c305ed509abf3060a26b7ed9792716b500/pytest-flake8-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "71b235ea27eea9d0e4ca56f1981a3c04", "sha256": "6a83769f90696d873ed1c3c35c53de69f06a2a4063f659386a4b4dab43b2dbce" }, "downloads": -1, "filename": "pytest_flake8-0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "71b235ea27eea9d0e4ca56f1981a3c04", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7083, "upload_time": "2016-10-06T19:00:54", "url": "https://files.pythonhosted.org/packages/c8/da/fc0ae2fe1432669bdde2799e56a53aa4f95a38c35a2291df57ea492e717f/pytest_flake8-0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ce9863944f97bed8f984f3f6e7a6f49", "sha256": "ee421675664409acac5d455cbde4a2a329d812cac9b27fa0a6bd694a2429d8a7" }, "downloads": -1, "filename": "pytest-flake8-0.7.tar.gz", "has_sig": false, "md5_digest": "4ce9863944f97bed8f984f3f6e7a6f49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7244, "upload_time": "2016-10-06T19:00:56", "url": "https://files.pythonhosted.org/packages/de/ba/ddb92e4f3187b3ab5116287fccee7822e77213d54a46810f6fca29296ba9/pytest-flake8-0.7.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "20f4368214eafd8d8bfab7f71b0a016e", "sha256": "8efaf4595a13079197ac740a12e6a87e3403f08133a42d3ac5984474f6f91681" }, "downloads": -1, "filename": "pytest_flake8-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20f4368214eafd8d8bfab7f71b0a016e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7170, "upload_time": "2016-10-18T00:16:14", "url": "https://files.pythonhosted.org/packages/fb/a8/a0e52a3172f2c0dd710ab9f48929d50b95a0dcac94c562b0358153267950/pytest_flake8-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39b64ebceb2849805975a2ff4ea7e947", "sha256": "aa10a6db147485d71dad391d4149388904c3072194d51755f64784ff128845fd" }, "downloads": -1, "filename": "pytest-flake8-0.8.1.tar.gz", "has_sig": false, "md5_digest": "39b64ebceb2849805975a2ff4ea7e947", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7359, "upload_time": "2016-10-18T00:16:17", "url": "https://files.pythonhosted.org/packages/75/b8/7380f4d81cdd5edac344f5699b3f7846b6f56581820fc7d0d673b1d067ac/pytest-flake8-0.8.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "341c68fe92c89a0c86f882b5e95d1e9b", "sha256": "ec156abeedf238e38ef4a0fb6917a1c5f8618eb6fa637534f8f68063660a2b57" }, "downloads": -1, "filename": "pytest_flake8-0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "341c68fe92c89a0c86f882b5e95d1e9b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7243, "upload_time": "2017-10-23T22:54:07", "url": "https://files.pythonhosted.org/packages/1f/ca/c951a73a723ed62d823d899c2b0d5e6e721c5036ab167026f3c812d50031/pytest_flake8-0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "246d92c25eaa2db0ea67339b4aae22d2", "sha256": "4615a10a2dc55128116d468aa6d0b0f8a2040be13d1ebae9e026ceca7770c51e" }, "downloads": -1, "filename": "pytest-flake8-0.9.tar.gz", "has_sig": false, "md5_digest": "246d92c25eaa2db0ea67339b4aae22d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7526, "upload_time": "2017-10-23T22:54:09", "url": "https://files.pythonhosted.org/packages/0d/9e/d988145f3d8b0a90e6049fcc9d40deae49a3841bcdae94aafdf0eb3df5a7/pytest-flake8-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "e70d2f72fbe35d9a4d1bab70107cc3c5", "sha256": "e67686645860009cf1f9a5016e110234b4a2c4584711d62ba753ed651ab9ab28" }, "downloads": -1, "filename": "pytest_flake8-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e70d2f72fbe35d9a4d1bab70107cc3c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7634, "upload_time": "2017-10-26T18:31:32", "url": "https://files.pythonhosted.org/packages/34/3f/157aaa9031857e922d4c59627652427af1f5d893017778b3f01d797d8323/pytest_flake8-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f16c46d0fa88e07606b0c444d697d815", "sha256": "e716072d07a557defdd5c4141984569731e292961370a5663c1697283aa16200" }, "downloads": -1, "filename": "pytest-flake8-0.9.1.tar.gz", "has_sig": false, "md5_digest": "f16c46d0fa88e07606b0c444d697d815", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7959, "upload_time": "2017-10-26T18:31:34", "url": "https://files.pythonhosted.org/packages/e5/87/345c1423d3dd7c27247b61c71192c9b94a5f980647389e622ac41ff92a3d/pytest-flake8-0.9.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "004abc001f80ed43b681895f5eeef856", "sha256": "43598dfa211242525897866ff35fa553ebd88177383783079099057c7ad04331" }, "downloads": -1, "filename": "pytest_flake8-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "004abc001f80ed43b681895f5eeef856", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7618, "upload_time": "2018-03-19T19:15:34", "url": "https://files.pythonhosted.org/packages/3a/5e/a1e0253aca4c897f8672ca8041225a7def4e9fa0298d5089b5d2c131344a/pytest_flake8-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f6724869942c6ca976fc4152d607b8e", "sha256": "3996de65a1219697596acac755090c70c47ec901edc438ea88ce1aa6098fb905" }, "downloads": -1, "filename": "pytest-flake8-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4f6724869942c6ca976fc4152d607b8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8382, "upload_time": "2018-03-19T19:15:35", "url": "https://files.pythonhosted.org/packages/ed/ec/c1df8a4fb3dfd7ff4fab894f95baccf628c938b54f1121702b7af72d5f33/pytest-flake8-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "73d59a78b79bec3a75704f0a5389b4ca", "sha256": "ec248d4a215d6c7cd9d3ca48f365ece0e3892b46d626c22a95ccc80188ff35ed" }, "downloads": -1, "filename": "pytest_flake8-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73d59a78b79bec3a75704f0a5389b4ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5205, "upload_time": "2018-04-30T19:42:58", "url": "https://files.pythonhosted.org/packages/1e/41/84bff189d67a3122b8e86d43d2421aa94f882507b733d8c762b9051f129a/pytest_flake8-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fd0c2878e8ce8fbdd5fd6c20cb3cefb", "sha256": "e5cdc4f459c9436ac6c649e428a014bb5988605858549397374ec29a776cae68" }, "downloads": -1, "filename": "pytest-flake8-1.0.1.tar.gz", "has_sig": false, "md5_digest": "4fd0c2878e8ce8fbdd5fd6c20cb3cefb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7938, "upload_time": "2018-04-30T19:42:59", "url": "https://files.pythonhosted.org/packages/99/d4/a507e16075ae1788a9efd203045f2f9c26f26ba8899c751f9aa76a407787/pytest-flake8-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "9fa51dbce1efef8f6ea90841b89c3b1b", "sha256": "4f30f5be3efb89755f38f11bdb2a5e22d19a6f5faa73428f703a3292a9572cd3" }, "downloads": -1, "filename": "pytest_flake8-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9fa51dbce1efef8f6ea90841b89c3b1b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5206, "upload_time": "2018-07-26T17:23:50", "url": "https://files.pythonhosted.org/packages/a5/a0/1bb6067862f27d5211a9139af4482424641ccd7c18b3f1ef9a8aa92ffc9f/pytest_flake8-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21215a25170e8772b485049fd9b818e9", "sha256": "c740ad6aa19e3958947d2118f70bed218caf1d2097039fb7318573a2a72f89a1" }, "downloads": -1, "filename": "pytest-flake8-1.0.2.tar.gz", "has_sig": false, "md5_digest": "21215a25170e8772b485049fd9b818e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7974, "upload_time": "2018-07-26T17:23:51", "url": "https://files.pythonhosted.org/packages/05/f4/69215f7d4b5db7acc7280567ad11752dea85415cbf27110d065f1ee3c9f8/pytest-flake8-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "ace087e6f17e999d133e74f26182f170", "sha256": "e6a407e8effa623d839e4994799c2a4674ff46219d39533fc0afccf39af53fc1" }, "downloads": -1, "filename": "pytest_flake8-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ace087e6f17e999d133e74f26182f170", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6078, "upload_time": "2019-01-14T03:21:43", "url": "https://files.pythonhosted.org/packages/82/f8/2595f4dd599369633eb9be9f8e987451dc9d8d1712d9b0e9fc06a2c48ba7/pytest_flake8-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f60b5d2a45db729ba67883c789ba5b71", "sha256": "b2c71fb6d469bae076a01c43d4a83485d740db6a8a00bad77e0657ed035e98d4" }, "downloads": -1, "filename": "pytest-flake8-1.0.3.tar.gz", "has_sig": false, "md5_digest": "f60b5d2a45db729ba67883c789ba5b71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8070, "upload_time": "2019-01-14T03:21:44", "url": "https://files.pythonhosted.org/packages/2c/e4/e70ed255b56065f6264479dd38e60a739bd77ba03f70b14559250b46d62c/pytest-flake8-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "097f325ec8c0e4af4493e2b593df3408", "sha256": "d7e2b6b274a255b7ae35e9224c85294b471a83b76ecb6bd53c337ae977a499af" }, "downloads": -1, "filename": "pytest_flake8-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "097f325ec8c0e4af4493e2b593df3408", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6107, "upload_time": "2019-01-31T20:07:10", "url": "https://files.pythonhosted.org/packages/4b/99/a6e993c0927665522602058e1f2ea61ba1c8c51a60e3006f1eb1153b37e2/pytest_flake8-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6fcb6ceb01a2bc06c005f6cc7f70fe5", "sha256": "4d225c13e787471502ff94409dcf6f7927049b2ec251c63b764a4b17447b60c0" }, "downloads": -1, "filename": "pytest-flake8-1.0.4.tar.gz", "has_sig": false, "md5_digest": "a6fcb6ceb01a2bc06c005f6cc7f70fe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8183, "upload_time": "2019-01-31T20:07:12", "url": "https://files.pythonhosted.org/packages/f0/b5/e1360bfe5b1218fe4f7a7fd6038de8d990e980c6f5d55c922e216de7131b/pytest-flake8-1.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "097f325ec8c0e4af4493e2b593df3408", "sha256": "d7e2b6b274a255b7ae35e9224c85294b471a83b76ecb6bd53c337ae977a499af" }, "downloads": -1, "filename": "pytest_flake8-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "097f325ec8c0e4af4493e2b593df3408", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6107, "upload_time": "2019-01-31T20:07:10", "url": "https://files.pythonhosted.org/packages/4b/99/a6e993c0927665522602058e1f2ea61ba1c8c51a60e3006f1eb1153b37e2/pytest_flake8-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6fcb6ceb01a2bc06c005f6cc7f70fe5", "sha256": "4d225c13e787471502ff94409dcf6f7927049b2ec251c63b764a4b17447b60c0" }, "downloads": -1, "filename": "pytest-flake8-1.0.4.tar.gz", "has_sig": false, "md5_digest": "a6fcb6ceb01a2bc06c005f6cc7f70fe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8183, "upload_time": "2019-01-31T20:07:12", "url": "https://files.pythonhosted.org/packages/f0/b5/e1360bfe5b1218fe4f7a7fd6038de8d990e980c6f5d55c922e216de7131b/pytest-flake8-1.0.4.tar.gz" } ] }