{ "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 GIT Fixture\n==================\n\nCreates an empty Git repository for testing that cleans up after itself\non teardown.\n\nInstallation\n------------\n\nInstall using your favourite package installer:\n\n.. code:: bash\n\n pip install pytest-git\n # or\n easy_install pytest-git\n\nEnable the fixture explicitly in your tests or conftest.py (not required\nwhen using setuptools entry points):\n\n.. code:: python\n\n pytest_plugins = ['pytest_git']\n\nUsage\n-----\n\nThis plugin is a thin wrapper around the excellent GitPython library\n(see http://gitpython.readthedocs.org/en/stable/). Here's a noddy test\ncase that shows it working:\n\n.. code:: python\n\n def test_git_repo(git_repo):\n # The fixture derives from `workspace` in `pytest-shutil`, so they contain \n # a handle to the path.py path object (see https://pathpy.readthedocs.io/)\n path = git_repo.workspace\n file = path / 'hello.txt'\n file.write_text('hello world!')\n\n # We can run commands relative to the working directory\n git_repo.run('git add hello.txt')\n\n # It's better to use the GitPython api directly - the 'api' attribute is \n # a handle to the repository object.\n git_repo.api.index.commit(\"Initial commit\")\n\n # The fixture has a URI property you can use in downstream systems\n assert git_repo.uri.startswith('file://')\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-git", "package_url": "https://pypi.org/project/pytest-git/", "platform": "unix", "project_url": "https://pypi.org/project/pytest-git/", "project_urls": { "Homepage": "https://github.com/manahl/pytest-plugins" }, "release_url": "https://pypi.org/project/pytest-git/1.7.0/", "requires_dist": [ "pytest", "pytest-shutil", "gitpython" ], "requires_python": "", "summary": "Git repository fixture for py.test", "version": "1.7.0" }, "last_serial": 5325302, "releases": { "1.1.2": [], "1.2.0": [ { "comment_text": "", "digests": { "md5": "45998a0fdc3df61d597b15cdbd071622", "sha256": "de071437a0df5f9f52bb6e18e7656b6f11d0cb4b255ebdf2342fb14b10a80c08" }, "downloads": -1, "filename": "pytest_git-1.2.0-py2.7.egg", "has_sig": false, "md5_digest": "45998a0fdc3df61d597b15cdbd071622", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3017, "upload_time": "2016-02-19T14:23:18", "url": "https://files.pythonhosted.org/packages/e7/d8/aeb0c25408e8ffb8f9ef65dc2153703c4e45f0c64e8b5f4df95c6f053947/pytest_git-1.2.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "82a867e17a315e0de02a43dfbe8f852f", "sha256": "632aaed8cfbdbd52b336f5664a336e80949c7863c20a6b61a8d1e20edbb22ded" }, "downloads": -1, "filename": "pytest_git-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "82a867e17a315e0de02a43dfbe8f852f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5098, "upload_time": "2016-02-19T14:23:12", "url": "https://files.pythonhosted.org/packages/e4/0e/5e9bc073917a5bdaa1c7328fc4e95e0f12cfd72ec22cd47c80cc24f272b3/pytest_git-1.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b27734bb26c5b6ee5c269ffd0117c56", "sha256": "ec7d0f077752726d23f74e932ad1444f255565e8131b2b5c4eade6d1e202a600" }, "downloads": -1, "filename": "pytest-git-1.2.0.tar.gz", "has_sig": false, "md5_digest": "5b27734bb26c5b6ee5c269ffd0117c56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4044, "upload_time": "2016-02-19T14:23:06", "url": "https://files.pythonhosted.org/packages/a2/16/ed785300dbe58a8422ace53f53afbe2942a11bf6c4c4d1e3c60e5cda7501/pytest-git-1.2.0.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "ea99c588eb5145891bb71ff398a88b89", "sha256": "1b7a277f61519b304c8f09e5c8bff68ffda54a4d67b5f89d189c403cb687e02f" }, "downloads": -1, "filename": "pytest_git-1.2.11-py2.7.egg", "has_sig": false, "md5_digest": "ea99c588eb5145891bb71ff398a88b89", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4068, "upload_time": "2017-07-21T15:07:48", "url": "https://files.pythonhosted.org/packages/83/94/e8420b728768d23530b24d0d6d4d9a2647d8394c7c228b21bd9266e0f5b9/pytest_git-1.2.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a91cbc3e305daa4de6647e92ad27885d", "sha256": "777f19dffd7096b670b04ebbd6ebf714500cbb09d3f7751ea4f5788a87e78a19" }, "downloads": -1, "filename": "pytest_git-1.2.11-py2-none-any.whl", "has_sig": false, "md5_digest": "a91cbc3e305daa4de6647e92ad27885d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7188, "upload_time": "2017-07-21T15:07:47", "url": "https://files.pythonhosted.org/packages/ab/24/aab380e21ec178b66415288e66fb9134181614e98720a0c167b64fef3c32/pytest_git-1.2.11-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd2946869d9087616e437613cd74f194", "sha256": "5f118a43701af15bb1ab88d1b7e205e42801affd2e7664ee4910c9584dc03291" }, "downloads": -1, "filename": "pytest-git-1.2.11.tar.gz", "has_sig": false, "md5_digest": "cd2946869d9087616e437613cd74f194", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5166, "upload_time": "2017-07-21T15:07:50", "url": "https://files.pythonhosted.org/packages/49/0e/47e475067efa043b97326a6b6de10a0136cdd93698de4704d497dbfd5dd4/pytest-git-1.2.11.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "6377b31c880a34971acba944a8d95c4a", "sha256": "16dd64b77eeec7245e36ccacb87eee43f222e1709a17d320a90f6a1f05f83174" }, "downloads": -1, "filename": "pytest_git-1.2.2-py2.7.egg", "has_sig": false, "md5_digest": "6377b31c880a34971acba944a8d95c4a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3367, "upload_time": "2016-10-27T12:47:59", "url": "https://files.pythonhosted.org/packages/ba/52/44b0fe5fc529e28ccde5e829969195c3a64138747124b410e0bfe35d0b0d/pytest_git-1.2.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "24fd90fccdf40889f7be1d5519c94afc", "sha256": "7087e276ea08bf53f5bc7a94f016449f540f799081d495a2ceecb300e5d74a54" }, "downloads": -1, "filename": "pytest_git-1.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "24fd90fccdf40889f7be1d5519c94afc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5808, "upload_time": "2016-10-27T12:47:57", "url": "https://files.pythonhosted.org/packages/64/6a/fb4e8f524af4e3607ebff350a56e1d4b9e15161bb36c93f64bf4f1c331c1/pytest_git-1.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f9a629ae0fe646de92f5a8996724bfc", "sha256": "9d16bb8600d8fb8306358049c966e154274c68ab2365f1f75451585081a034b9" }, "downloads": -1, "filename": "pytest-git-1.2.2.tar.gz", "has_sig": false, "md5_digest": "0f9a629ae0fe646de92f5a8996724bfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4324, "upload_time": "2016-10-27T12:47:54", "url": "https://files.pythonhosted.org/packages/99/61/a9077047e068329b4c1be2c3be6bb79f6dbae7b850dd5581bcb0483f1109/pytest-git-1.2.2.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "6f99d27de863004b96354a49143a0518", "sha256": "604815a037d570c396f49207b8cd2d2c7724b5641ffd190e3a01d9604ab52da7" }, "downloads": -1, "filename": "pytest_git-1.3.0-py2.7.egg", "has_sig": false, "md5_digest": "6f99d27de863004b96354a49143a0518", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4396, "upload_time": "2018-03-08T13:11:25", "url": "https://files.pythonhosted.org/packages/e4/13/10a838e2bae989a27df42cf87c9a3bd6db4a7e2289b9fc5bb93d35bbc1fb/pytest_git-1.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "65d21df953cad9a4ddc243bd06ebe537", "sha256": "eb22243b946f081c5e1147f63e66b6a1df4f889fa033ba8c80294fba0cc3fb78" }, "downloads": -1, "filename": "pytest_git-1.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "65d21df953cad9a4ddc243bd06ebe537", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7766, "upload_time": "2018-03-08T13:11:04", "url": "https://files.pythonhosted.org/packages/a7/9e/a73f91d9cb2475ea3cd542214b1764bc0adb750b45dfadf937dc461088a8/pytest_git-1.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1d85a9a72fe0fc1d39a5c780a8e60e8", "sha256": "1b5c37f13d07586ab50d31d666182836dd6b257b02cffce73a4b9d4c7b649fe9" }, "downloads": -1, "filename": "pytest-git-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b1d85a9a72fe0fc1d39a5c780a8e60e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7338, "upload_time": "2018-03-08T13:11:25", "url": "https://files.pythonhosted.org/packages/d6/ed/69a74d8d946c1d689ee2027362c7e749410bac883fb6bbdff1d0e76893c3/pytest-git-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "9d241b69699fbb68dde94ac0f9dc6b53", "sha256": "d1194df1f701ac2b81ff31f74b0e9365a7f8be8b8219ffba6e159a797cd38c11" }, "downloads": -1, "filename": "pytest_git-1.4.0-py2.7.egg", "has_sig": false, "md5_digest": "9d241b69699fbb68dde94ac0f9dc6b53", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4748, "upload_time": "2019-01-15T08:39:23", "url": "https://files.pythonhosted.org/packages/f4/82/043eb442a0c884d2349fbcea198ca57b4a1e5d962ed78ade1ccb4e3b61e0/pytest_git-1.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d4cfc2e2dc35ed4f0960df80e5af2479", "sha256": "51fb9c24cf6b375c723e5ee95d959341d1f264589a448340e69fcc10b381caad" }, "downloads": -1, "filename": "pytest_git-1.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d4cfc2e2dc35ed4f0960df80e5af2479", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5584, "upload_time": "2019-01-15T08:39:05", "url": "https://files.pythonhosted.org/packages/cd/6c/f07d67470a6dba64939d954e54ff117afdb990cf3e22859fafec6a2fca45/pytest_git-1.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa77c3ffae7d026ede257ffdeb6f5860", "sha256": "f430f9276b62cc381f1742621e1d2a811b00344acb0480f875c3d3f927915555" }, "downloads": -1, "filename": "pytest-git-1.4.0.tar.gz", "has_sig": false, "md5_digest": "fa77c3ffae7d026ede257ffdeb6f5860", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7886, "upload_time": "2019-01-15T08:39:24", "url": "https://files.pythonhosted.org/packages/da/d7/47b461ab374597eb842d10c7e4c3b83741d4ce4fa10db5de35af27e4743d/pytest-git-1.4.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "c9684097c42b3a97243e9bc33eb2e4dc", "sha256": "b9c963ea0645502cc72db93035735ca60a96bab8e44718d9ef57e02cb9aa2d82" }, "downloads": -1, "filename": "pytest_git-1.6.0-py2.7.egg", "has_sig": false, "md5_digest": "c9684097c42b3a97243e9bc33eb2e4dc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5037, "upload_time": "2019-02-12T12:25:05", "url": "https://files.pythonhosted.org/packages/96/17/d800d3bc99b61352364fcecf8ba71e2ed03cac56cd3e9850c88858f1b0e8/pytest_git-1.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4ed56880c5485233685855aa0432f517", "sha256": "cb6e04f8a87ef0da0a588eafa0af71f16a5bb2b85ccc0c8685aa85c8579e2d52" }, "downloads": -1, "filename": "pytest_git-1.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4ed56880c5485233685855aa0432f517", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5858, "upload_time": "2019-02-12T12:24:54", "url": "https://files.pythonhosted.org/packages/02/6d/4d17d0d47bb39f63362f76a131668f951842b8fa3713ab91b9a80a530fd7/pytest_git-1.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b76b31be8273c99c6725fd851c82b30", "sha256": "ef5b8405fea7dddd59c357a3cd9e640c8e42c65f02636d6aab1a4c3798927a2d" }, "downloads": -1, "filename": "pytest-git-1.6.0.tar.gz", "has_sig": false, "md5_digest": "4b76b31be8273c99c6725fd851c82b30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8337, "upload_time": "2019-02-12T12:25:06", "url": "https://files.pythonhosted.org/packages/62/24/dd617bd16e4d8d0583c7f66f7a50dc71e558b0c352104e90a6a517845ad1/pytest-git-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "c2fd8277add564fce523926a7ba7e121", "sha256": "43bea064524b8e2b814960ec0e5506cacd00db8eab636a991b7d426e3ee2bd01" }, "downloads": -1, "filename": "pytest_git-1.7.0-py2.7.egg", "has_sig": false, "md5_digest": "c2fd8277add564fce523926a7ba7e121", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5500, "upload_time": "2019-05-28T06:36:32", "url": "https://files.pythonhosted.org/packages/29/f0/af5ec24a987d6b83bf46fc4cdf4a90df01ab42214886685bec0b587dc2a9/pytest_git-1.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a2baf768e38b28f7d7a314de456e6808", "sha256": "f0737e688bb6d53b4a501d9eba340885e63522ee57e17c24137525c7d9a17361" }, "downloads": -1, "filename": "pytest_git-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2baf768e38b28f7d7a314de456e6808", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6302, "upload_time": "2019-05-28T06:36:05", "url": "https://files.pythonhosted.org/packages/db/ab/377c414fb98265ec2a390cbef620a6edca952656bcb001dcc4513886f71e/pytest_git-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb48516d0bde149ebbbcc05dcbb651e9", "sha256": "a7672cd62e25505b83d805a66cfef79d7fced05031919e3f23727f6c9df5aca4" }, "downloads": -1, "filename": "pytest_git-1.7.0-py3.6.egg", "has_sig": false, "md5_digest": "cb48516d0bde149ebbbcc05dcbb651e9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 5500, "upload_time": "2019-05-28T06:36:34", "url": "https://files.pythonhosted.org/packages/d9/08/e0365b6328722fa78730b3eafca82d855045b052f5bcfdc3985843967d14/pytest_git-1.7.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "30fb4c22c80d918548c302af7b3ff0c0", "sha256": "356fef84eb0d663d2a5eceafb3ff6b2c3043b2b964b1872b67e51979dbbb43f8" }, "downloads": -1, "filename": "pytest-git-1.7.0.tar.gz", "has_sig": false, "md5_digest": "30fb4c22c80d918548c302af7b3ff0c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9122, "upload_time": "2019-05-28T06:36:35", "url": "https://files.pythonhosted.org/packages/b4/8f/c5a080ea0af99d7ed6a6e4f52a63628384896ed00628d781c52daf0119da/pytest-git-1.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c2fd8277add564fce523926a7ba7e121", "sha256": "43bea064524b8e2b814960ec0e5506cacd00db8eab636a991b7d426e3ee2bd01" }, "downloads": -1, "filename": "pytest_git-1.7.0-py2.7.egg", "has_sig": false, "md5_digest": "c2fd8277add564fce523926a7ba7e121", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5500, "upload_time": "2019-05-28T06:36:32", "url": "https://files.pythonhosted.org/packages/29/f0/af5ec24a987d6b83bf46fc4cdf4a90df01ab42214886685bec0b587dc2a9/pytest_git-1.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a2baf768e38b28f7d7a314de456e6808", "sha256": "f0737e688bb6d53b4a501d9eba340885e63522ee57e17c24137525c7d9a17361" }, "downloads": -1, "filename": "pytest_git-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2baf768e38b28f7d7a314de456e6808", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6302, "upload_time": "2019-05-28T06:36:05", "url": "https://files.pythonhosted.org/packages/db/ab/377c414fb98265ec2a390cbef620a6edca952656bcb001dcc4513886f71e/pytest_git-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb48516d0bde149ebbbcc05dcbb651e9", "sha256": "a7672cd62e25505b83d805a66cfef79d7fced05031919e3f23727f6c9df5aca4" }, "downloads": -1, "filename": "pytest_git-1.7.0-py3.6.egg", "has_sig": false, "md5_digest": "cb48516d0bde149ebbbcc05dcbb651e9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 5500, "upload_time": "2019-05-28T06:36:34", "url": "https://files.pythonhosted.org/packages/d9/08/e0365b6328722fa78730b3eafca82d855045b052f5bcfdc3985843967d14/pytest_git-1.7.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "30fb4c22c80d918548c302af7b3ff0c0", "sha256": "356fef84eb0d663d2a5eceafb3ff6b2c3043b2b964b1872b67e51979dbbb43f8" }, "downloads": -1, "filename": "pytest-git-1.7.0.tar.gz", "has_sig": false, "md5_digest": "30fb4c22c80d918548c302af7b3ff0c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9122, "upload_time": "2019-05-28T06:36:35", "url": "https://files.pythonhosted.org/packages/b4/8f/c5a080ea0af99d7ed6a6e4f52a63628384896ed00628d781c52daf0119da/pytest-git-1.7.0.tar.gz" } ] }