{ "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 SVN Fixture\n==================\n\nCreates an empty SVN 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-svn\n # or\n easy_install pytest-svn\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_svn']\n\nUsage\n-----\n\nHere's a noddy test case that shows it working:\n\n.. code:: python\n\n def test_svn_repo(svn_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 = svn_repo.workspace\n file = path / 'hello.txt'\n file.write_text('hello world!')\n\n # We can also run things relative to the repo\n svn_repo.run('svn add hello.txt')\n\n # The fixture has a URI property you can use in downstream systems\n assert svn_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-svn", "package_url": "https://pypi.org/project/pytest-svn/", "platform": "unix", "project_url": "https://pypi.org/project/pytest-svn/", "project_urls": { "Homepage": "https://github.com/manahl/pytest-plugins" }, "release_url": "https://pypi.org/project/pytest-svn/1.7.0/", "requires_dist": [ "pytest", "pytest-shutil" ], "requires_python": "", "summary": "SVN repository fixture for py.test", "version": "1.7.0" }, "last_serial": 5325320, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "8cc9fada538b732774f31bf831fd3888", "sha256": "222feff41bc5d6bc88c03ff9baeb762654f60548eb99919872d8fea175a682d4" }, "downloads": -1, "filename": "pytest_svn-1.0.0-py2.7.egg", "has_sig": false, "md5_digest": "8cc9fada538b732774f31bf831fd3888", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2510, "upload_time": "2015-12-23T14:12:45", "url": "https://files.pythonhosted.org/packages/0d/ef/ff5267ad7f8b01f83965af08637bc1c68fcbd602e41d729222d6109cc3aa/pytest_svn-1.0.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b9eaef847fb56256d1fbc00165759629", "sha256": "51da79c564d5fc809127e39a3969d808a0c639d4c41f3c1561a1665c411ca3fb" }, "downloads": -1, "filename": "pytest_svn-1.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b9eaef847fb56256d1fbc00165759629", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4170, "upload_time": "2015-12-23T14:12:53", "url": "https://files.pythonhosted.org/packages/3f/03/c6d3f8dfb6b411d2aa5e0bbb663185368790b110b5320878b8d0fa4ef32c/pytest_svn-1.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff6a51bb809c54579d7c6c06a6cadf41", "sha256": "1eef32a71a5f332adb986871aaa1b45440a8405523b73d5ef060ba90341d1649" }, "downloads": -1, "filename": "pytest-svn-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ff6a51bb809c54579d7c6c06a6cadf41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2401, "upload_time": "2015-12-23T14:12:37", "url": "https://files.pythonhosted.org/packages/6b/63/18443f7eb5b594e96a78f34dceeb81eac5569e5144a657e877246608bbf5/pytest-svn-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "f5d876b0dce8401b8a157dd71ac83633", "sha256": "8d8eed27f58a9c8f04bb57a8211d26d84c4b92147c8bf2cf34fc9ce7dbf4cd7e" }, "downloads": -1, "filename": "pytest_svn-1.0.1-py2.7.egg", "has_sig": false, "md5_digest": "f5d876b0dce8401b8a157dd71ac83633", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2555, "upload_time": "2015-12-23T18:50:33", "url": "https://files.pythonhosted.org/packages/30/8e/51835c1031ad1996225b27ce8ee7d22051bc364277b4e53eeaf65cd0cc86/pytest_svn-1.0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d41d813e6e45afdbd0bda25c2402f477", "sha256": "759c963c1c792dda97b7fa0ede627a562b91120ded91dd4449529480f879ad56" }, "downloads": -1, "filename": "pytest_svn-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "d41d813e6e45afdbd0bda25c2402f477", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4210, "upload_time": "2015-12-23T18:50:26", "url": "https://files.pythonhosted.org/packages/9c/59/900c7123c32ef242c2efca37d08821b1a4a2aed162158a55ac066542e377/pytest_svn-1.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae8797abe773afb350c7a0918a04aa02", "sha256": "c8fb0b68be5db4efd5abdc93a072259c1591bdfc43148884c98b8c539cf99df9" }, "downloads": -1, "filename": "pytest-svn-1.0.1.tar.gz", "has_sig": false, "md5_digest": "ae8797abe773afb350c7a0918a04aa02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3348, "upload_time": "2015-12-23T18:50:20", "url": "https://files.pythonhosted.org/packages/0c/e7/986fcd9ecd8f4ba91eda67ec9e0da6a1826bf51376f21fb33af13e76fb69/pytest-svn-1.0.1.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "d16ba0af25f61eb54324072ec12a11f9", "sha256": "9940fd538c17f1b5e9ab4bb07babe4f40e9220aeb69139f93409c3b76fdbdf02" }, "downloads": -1, "filename": "pytest_svn-1.2.11-py2.7.egg", "has_sig": false, "md5_digest": "d16ba0af25f61eb54324072ec12a11f9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3888, "upload_time": "2017-07-21T15:08:31", "url": "https://files.pythonhosted.org/packages/f1/20/4f957dbc83147592e7a6778e93cd7b3bcb2ff6c9821ab4c8d8521547fb70/pytest_svn-1.2.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6dc3b792818be056e85d682ff5ef7645", "sha256": "b418827aaae6c9bfdb67b8a914ead132080807d720d9e059d7d766f96882c4bc" }, "downloads": -1, "filename": "pytest_svn-1.2.11-py2-none-any.whl", "has_sig": false, "md5_digest": "6dc3b792818be056e85d682ff5ef7645", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 6876, "upload_time": "2017-07-21T15:08:30", "url": "https://files.pythonhosted.org/packages/02/da/de14bcfe96332831582556d31daa6ba1911513e2a863a942d017918fd52e/pytest_svn-1.2.11-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6562d18c8e60be83ea583e54ce881247", "sha256": "7eefed31ce316e97daf2d29b06a71bf20de730fa4d104a11e0591183186031eb" }, "downloads": -1, "filename": "pytest-svn-1.2.11.tar.gz", "has_sig": false, "md5_digest": "6562d18c8e60be83ea583e54ce881247", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4956, "upload_time": "2017-07-21T15:08:33", "url": "https://files.pythonhosted.org/packages/3a/22/b1fd63d473a7da783094d7c15860298cb71f8bc4c967dbfbcb0226443ba8/pytest-svn-1.2.11.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "81199610f9589bb624a59d1debdadf81", "sha256": "4447f3ecedd559aeb3c7db13bb29e68b949dff4f8cd103a6d26188637b2e071e" }, "downloads": -1, "filename": "pytest_svn-1.2.2-py2.7.egg", "has_sig": false, "md5_digest": "81199610f9589bb624a59d1debdadf81", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3191, "upload_time": "2016-10-27T12:49:23", "url": "https://files.pythonhosted.org/packages/45/59/3b5266d2291dd1106b16191f9bdbb305eb9ef0dde95672015504945bdf23/pytest_svn-1.2.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "18cda197694824dfe8b43d047eb0607f", "sha256": "cdd09e741131d75c33789427aa9faa64a6fd56a83e7565bfff4e6d5d90f18021" }, "downloads": -1, "filename": "pytest_svn-1.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "18cda197694824dfe8b43d047eb0607f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5499, "upload_time": "2016-10-27T12:49:20", "url": "https://files.pythonhosted.org/packages/cc/64/61f67b5ce5cebe331fe99cac190e029f0d09231f91a1c99cd9b5b7fb5761/pytest_svn-1.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7cbad0add6698945b269b835ed4eb80", "sha256": "4774e17724b82cedf7ce809a2fcb4958b4e3d7e1eb0102a4c6b372d82c350f64" }, "downloads": -1, "filename": "pytest-svn-1.2.2.tar.gz", "has_sig": false, "md5_digest": "a7cbad0add6698945b269b835ed4eb80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4100, "upload_time": "2016-10-27T12:49:18", "url": "https://files.pythonhosted.org/packages/2d/65/b06c5726e2be42f5ce33aac34cf2affb20ec0b694bb7a56e7b88a61bfb64/pytest-svn-1.2.2.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "ba13cde21df0823dde88dab13b5c93f0", "sha256": "2ed2eaac7537d25e7dbd3f9623553bc9217068e63776919a7d55e02fd2ae6b8d" }, "downloads": -1, "filename": "pytest_svn-1.3.0-py2.7.egg", "has_sig": false, "md5_digest": "ba13cde21df0823dde88dab13b5c93f0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4213, "upload_time": "2018-03-08T13:11:48", "url": "https://files.pythonhosted.org/packages/24/b6/b5c7aece9c438668c8dd0087e4ba611d43962b037af3fa0e02ae89b586a3/pytest_svn-1.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f6c9718054ebcd5de05c1c6c66a9050e", "sha256": "42dc0a52213b26f317cab9a7e8bfe4828f936ea579016623754ee793075572da" }, "downloads": -1, "filename": "pytest_svn-1.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "f6c9718054ebcd5de05c1c6c66a9050e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7455, "upload_time": "2018-03-08T13:11:13", "url": "https://files.pythonhosted.org/packages/6f/bb/a02f0a2c1f79ae4ade9e94aa3ae98c3e581ac8e140f5d161e23fbd9833bf/pytest_svn-1.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68c45f8838914c24046f12febbba631f", "sha256": "9c95a5d35bc94b9a283fa5cd144f688796d9f5963fcd5a919bb004c4737899c6" }, "downloads": -1, "filename": "pytest-svn-1.3.0.tar.gz", "has_sig": false, "md5_digest": "68c45f8838914c24046f12febbba631f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7113, "upload_time": "2018-03-08T13:11:50", "url": "https://files.pythonhosted.org/packages/1e/c2/a88222b12be2af4ef772d8249bbab85d6eff675900984092bd7fe81658b9/pytest-svn-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "31e85e7d4b40737091e198e62f0574c7", "sha256": "3ab7d1779e64c924df7aa0fd236f6027da5bdef86f257252aa1a0f3e7f08835d" }, "downloads": -1, "filename": "pytest_svn-1.4.0-py2.7.egg", "has_sig": false, "md5_digest": "31e85e7d4b40737091e198e62f0574c7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4565, "upload_time": "2019-01-15T08:39:48", "url": "https://files.pythonhosted.org/packages/84/a0/b9bb71a99a77cc16c30e324c601475755ce9a82d4b2d531a519b9b3ab423/pytest_svn-1.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b77555f41e7cf0b1dddcb3eb776b0aba", "sha256": "924d2331733004e9112e5fce8eda32d5f32556d12ea425b3c59789c094fc050c" }, "downloads": -1, "filename": "pytest_svn-1.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b77555f41e7cf0b1dddcb3eb776b0aba", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5410, "upload_time": "2019-01-15T08:39:13", "url": "https://files.pythonhosted.org/packages/c3/6a/dab89a22144095aeb37bd6aa74a9fc5967c318cfcb73b18a9f00e17a08a3/pytest_svn-1.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3094df7bbdd29b4e9f7cae4c92fe70ad", "sha256": "dbaa7fc7f9a558df2cfb1f472d7768ec55edaceb2c351fd0c3addf8b9fad4064" }, "downloads": -1, "filename": "pytest-svn-1.4.0.tar.gz", "has_sig": false, "md5_digest": "3094df7bbdd29b4e9f7cae4c92fe70ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7648, "upload_time": "2019-01-15T08:39:49", "url": "https://files.pythonhosted.org/packages/59/9a/4c2463a56819010fea2810075ca953518649251964ad598b59516f0b7b42/pytest-svn-1.4.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "4ae0e4c07e27f3256abefa94d15f1ac6", "sha256": "334dfcb5b36c20dfd3ed4f837f1fe8446b2d669279b2f90ccbcf4ed44b9c4afe" }, "downloads": -1, "filename": "pytest_svn-1.6.0-py2.7.egg", "has_sig": false, "md5_digest": "4ae0e4c07e27f3256abefa94d15f1ac6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4855, "upload_time": "2019-02-12T12:25:28", "url": "https://files.pythonhosted.org/packages/55/64/e6cf879d5c7fdc87a4e3686ad3caf62f5153e327d626e7bd392b11d9cd6d/pytest_svn-1.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "79457315334197a772ab7edebf456b05", "sha256": "fff8c89969d610627bd4a0ca74c9b82da9d4df99e3a9fbffc90c5baeebfc9758" }, "downloads": -1, "filename": "pytest_svn-1.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "79457315334197a772ab7edebf456b05", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5684, "upload_time": "2019-02-12T12:25:02", "url": "https://files.pythonhosted.org/packages/e0/b9/5706620c0df17b8efebd35b29ff14fb819859b9b8c091806a370eb7353bd/pytest_svn-1.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "758715d3ecb5f0564b997c66b5d79cd5", "sha256": "5e3d08916145ec7cfba99f1ece7b5331115d91fd82e52a2d06f96f03d30d2f0a" }, "downloads": -1, "filename": "pytest-svn-1.6.0.tar.gz", "has_sig": false, "md5_digest": "758715d3ecb5f0564b997c66b5d79cd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8073, "upload_time": "2019-02-12T12:25:29", "url": "https://files.pythonhosted.org/packages/4c/ce/20a2840f2d79ae054312c84ca03e1278d4b87120733252b3a7082643ffc5/pytest-svn-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "35333fe75301f74ef535df269cb5dff1", "sha256": "de542900728f05ad6a14bb41c0989e189811c37a433ebb6a7786bb10b0373d9a" }, "downloads": -1, "filename": "pytest_svn-1.7.0-py2.7.egg", "has_sig": false, "md5_digest": "35333fe75301f74ef535df269cb5dff1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5322, "upload_time": "2019-05-28T06:37:12", "url": "https://files.pythonhosted.org/packages/57/d5/a622b8df389d85a5d9058690ab366642b3a0cd980ca019c51be61243da39/pytest_svn-1.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "62efc77caba88762f19a70bf3d8ff0dd", "sha256": "48832722b1fd0c7948c829d7e1fe11838a920f9f4dd9cb02849370342a911c6f" }, "downloads": -1, "filename": "pytest_svn-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62efc77caba88762f19a70bf3d8ff0dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6134, "upload_time": "2019-05-28T06:36:16", "url": "https://files.pythonhosted.org/packages/ed/69/e11b3c31c433cdb03351c9fd89f25ef625df7251797511a2f446284249f9/pytest_svn-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aaf543dddd6f6aea9b27113cbfd622b4", "sha256": "7fc36175670b0e92e2b9808c34652fa4dfda7af7b8dc9ae068ff040ba06826d7" }, "downloads": -1, "filename": "pytest_svn-1.7.0-py3.6.egg", "has_sig": false, "md5_digest": "aaf543dddd6f6aea9b27113cbfd622b4", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 5322, "upload_time": "2019-05-28T06:37:13", "url": "https://files.pythonhosted.org/packages/43/1c/8a7d36410bb4dddf96a8e0350bc1ef2b02cbf95f838e4d0080126c928f95/pytest_svn-1.7.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a19ed451c58feda42c4f5f739a5422a3", "sha256": "548e46a3e8507c619d1142102939a9fe700ceeacbaa598e3048d697c3a4642d9" }, "downloads": -1, "filename": "pytest-svn-1.7.0.tar.gz", "has_sig": false, "md5_digest": "a19ed451c58feda42c4f5f739a5422a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8880, "upload_time": "2019-05-28T06:37:14", "url": "https://files.pythonhosted.org/packages/d1/39/586daeb5e9f9ec2111c34ce666d5f6188a50f06e1750814acd36abe0d746/pytest-svn-1.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "35333fe75301f74ef535df269cb5dff1", "sha256": "de542900728f05ad6a14bb41c0989e189811c37a433ebb6a7786bb10b0373d9a" }, "downloads": -1, "filename": "pytest_svn-1.7.0-py2.7.egg", "has_sig": false, "md5_digest": "35333fe75301f74ef535df269cb5dff1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5322, "upload_time": "2019-05-28T06:37:12", "url": "https://files.pythonhosted.org/packages/57/d5/a622b8df389d85a5d9058690ab366642b3a0cd980ca019c51be61243da39/pytest_svn-1.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "62efc77caba88762f19a70bf3d8ff0dd", "sha256": "48832722b1fd0c7948c829d7e1fe11838a920f9f4dd9cb02849370342a911c6f" }, "downloads": -1, "filename": "pytest_svn-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62efc77caba88762f19a70bf3d8ff0dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6134, "upload_time": "2019-05-28T06:36:16", "url": "https://files.pythonhosted.org/packages/ed/69/e11b3c31c433cdb03351c9fd89f25ef625df7251797511a2f446284249f9/pytest_svn-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aaf543dddd6f6aea9b27113cbfd622b4", "sha256": "7fc36175670b0e92e2b9808c34652fa4dfda7af7b8dc9ae068ff040ba06826d7" }, "downloads": -1, "filename": "pytest_svn-1.7.0-py3.6.egg", "has_sig": false, "md5_digest": "aaf543dddd6f6aea9b27113cbfd622b4", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 5322, "upload_time": "2019-05-28T06:37:13", "url": "https://files.pythonhosted.org/packages/43/1c/8a7d36410bb4dddf96a8e0350bc1ef2b02cbf95f838e4d0080126c928f95/pytest_svn-1.7.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a19ed451c58feda42c4f5f739a5422a3", "sha256": "548e46a3e8507c619d1142102939a9fe700ceeacbaa598e3048d697c3a4642d9" }, "downloads": -1, "filename": "pytest-svn-1.7.0.tar.gz", "has_sig": false, "md5_digest": "a19ed451c58feda42c4f5f739a5422a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8880, "upload_time": "2019-05-28T06:37:14", "url": "https://files.pythonhosted.org/packages/d1/39/586daeb5e9f9ec2111c34ce666d5f6188a50f06e1750814acd36abe0d746/pytest-svn-1.7.0.tar.gz" } ] }