{ "info": { "author": "Miguel \u00c1ngel Garc\u00eda", "author_email": "miguelangel.garcia@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Application Frameworks" ], "description": "==================== =================================================================================\nTests |travis| |coveralls|\n-------------------- ---------------------------------------------------------------------------------\nDownloads |pip dm| |pip dw| |pip dd|\n-------------------- ---------------------------------------------------------------------------------\nAbout |pip license| |pip wheel| |pip pyversions| |pip implem|\n-------------------- ---------------------------------------------------------------------------------\nStatus |version| |status|\n==================== =================================================================================\n\nParallelizes test executions.\n\nIt allows to parallelize the integration/acceptance tests execution in different environments. This way they will took much less time to finish.\n\nAnd it is based on plugins in order to support different languages or platforms.\n\nParaTest can be run under any Continuous Integration Server, like Jenkins_, TeamCity_, `Go-CD`_, Bamboo_, etc.\n\nWhy Paratest?\n=============\n\nAlmost all test runners allow you to paralellize the test execution, so... why Paratest?\n\nWell... In some cases test execution cannot be parallelized because of depenencies: database access, legacy code, file creation, etc. Then, you need to create a full workspace whenever you want to test them.\n\nThis may be a hard task, and sadly Paratest cannot help there.\n\nBut with some scripts to clone an existent workspace, Paratest can divide the tests between any number of workspaces, creating them on demand, and running the tests on them. Resources put the limits.\n\nAnother advantage of Paratest is the test order: Paratest remembers the time spent in each test and will reorder them to get the most of your infrastructure.\n\nAnd finally, Paratest can retry failed tests, in order to avoid unstable tests.\n\n\nUsage\n=====\n\nFirst of all, you need two things:\n\n- a source. This means to have a source with instructions to create a workspace\n- some scripts to setup/teardown the workspaces. This should translate the source into a workspace.\n\nThen, Paratest will call the setup scripts in order to create the workspaces and will parallelize the test run between them.\n\n\n\nCurrent plugins\n===============\n\nParaTest is in an early development stage and it still have no plugins to work. It is just a proof of concept.\n\nContribute\n==========\n\nPlugins\n-------\n\nWritting a plugin is quite easy. You can see the `paratest-dummy`_ as example. Just two steps are required:\n\n\nWrite the plugin methods\n________________________\n\nCurrently, just one method is required:\n\n``def find(path, test_pattern, file_pattern, output_path)``\n\nIt should return a dict or a generator for tuples.\n\n\nRegister the entrypoint\n_______________________\n\n\nThe second step is to create a ``pip`` package with the entrypoint ``find`` within the group ``paratest``. This should be done in the ``setup.py`` file. Example:\n\n.. code::\n\n from setuptools import setup, find_packages\n\n setup(\n name='whatever',\n version='0.0.1',\n entry_points={\n 'paratest': 'find = whatever:find'\n }\n )\n\n\n.. _`Jenkins`: https://jenkins.io\n.. _`TeamCity`: https://www.jetbrains.com/teamcity/\n.. _`Go-CD`: https://www.go.cd/\n.. _`Bamboo`: https://es.atlassian.com/software/bamboo/\n.. _`paratest-dummy`: https://github.com/paratestproject/paratest-dummy\n\n.. |travis| image:: https://img.shields.io/travis/paratestproject/paratest.svg\n :target: `Travis`_\n :alt: Travis results\n\n.. |coveralls| image:: https://img.shields.io/coveralls/paratestproject/paratest.svg\n :target: `Coveralls`_\n :alt: Coveralls results_\n\n.. |pip version| image:: https://img.shields.io/pypi/v/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Latest PyPI version\n\n.. |pip dm| image:: https://img.shields.io/pypi/dm/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Last month downloads from pypi\n\n.. |pip dw| image:: https://img.shields.io/pypi/dw/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Last week downloads from pypi\n\n.. |pip dd| image:: https://img.shields.io/pypi/dd/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Yesterday downloads from pypi\n\n.. |pip license| image:: https://img.shields.io/pypi/l/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: License\n\n.. |pip wheel| image:: https://img.shields.io/pypi/wheel/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Wheel\n\n.. |pip pyversions| image:: \thttps://img.shields.io/pypi/pyversions/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Python versions\n\n.. |pip implem| image:: \thttps://img.shields.io/pypi/implementation/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Python interpreters\n\n.. |status| image::\thttps://img.shields.io/pypi/status/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Status\n\n.. |version| image:: https://img.shields.io/pypi/v/paratest.svg\n :target: https://pypi.python.org/pypi/paratest\n :alt: Status\n\n\n\n.. _Travis: https://travis-ci.org/paratestproject/paratest\n.. _Coveralls: https://coveralls.io/r/paratestproject/paratest\n\n.. _@magmax9: https://twitter.com/magmax9\n\n.. _the Affero license: http://opensource.org/licenses/AGPL-3.0", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/paratestproject/paratest", "keywords": "parallel test", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "paratest", "package_url": "https://pypi.org/project/paratest/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/paratest/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/paratestproject/paratest" }, "release_url": "https://pypi.org/project/paratest/2.1.2/", "requires_dist": null, "requires_python": null, "summary": "Test paralelizer", "version": "2.1.2" }, "last_serial": 2481650, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "3fd1dd60dbc34fec5af78f1ac8d1997e", "sha256": "9e999cbbb889f50208a24bde1ae1e35f421d34176284fb1fa9c60779b4954dfd" }, "downloads": -1, "filename": "paratest-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3fd1dd60dbc34fec5af78f1ac8d1997e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 2286, "upload_time": "2016-03-29T05:34:14", "url": "https://files.pythonhosted.org/packages/97/b4/d642fbc97790ab5e165409042555820f576baea692c1d13a51a2cab5a809/paratest-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aedb1169b18713cb17df833355205a3c", "sha256": "bb3649a485c2f40a45ff9ce6d07e2fc5a1051be8f34c331eee97373b5a7a74cc" }, "downloads": -1, "filename": "paratest-0.0.1.tar.gz", "has_sig": false, "md5_digest": "aedb1169b18713cb17df833355205a3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1577, "upload_time": "2016-03-29T05:34:09", "url": "https://files.pythonhosted.org/packages/2d/b4/b003b409e6d95448aa61e8dc501c3a6b512d5392d5cdebaf5de5558fc423/paratest-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "54a3274d33e3c54997848453df4fc080", "sha256": "81083f63244cd753379551ebb39984310a7adc7da1c2b1154ce6cad9b0c6a0f5" }, "downloads": -1, "filename": "paratest-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "54a3274d33e3c54997848453df4fc080", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 3161, "upload_time": "2016-03-29T05:36:21", "url": "https://files.pythonhosted.org/packages/53/40/1fa17de35303203cd269cea390526465b9893ce8b34bfc9cae74bbae8a3f/paratest-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3940f0b13877b86501bffcfe4b121133", "sha256": "6909a3582e04b4733478f06997b8691c5cb81cde5d7a0d447b1d56f2c105833c" }, "downloads": -1, "filename": "paratest-0.0.2.tar.gz", "has_sig": false, "md5_digest": "3940f0b13877b86501bffcfe4b121133", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2075, "upload_time": "2016-03-29T05:36:15", "url": "https://files.pythonhosted.org/packages/3c/d2/603ce8942bdd10142e9ef68ad80dbdad9def4d1b42fb277610ee97ccbc5d/paratest-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "87ebd0d5fabea89f11a8412c683d7fb7", "sha256": "d1acef8c5177e3593298cf82a57c94e6abba75a213e0098f045e9c5d514a7186" }, "downloads": -1, "filename": "paratest-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "87ebd0d5fabea89f11a8412c683d7fb7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 3277, "upload_time": "2016-03-29T05:45:24", "url": "https://files.pythonhosted.org/packages/b1/59/c00b2758b779775b63bda69287aedf51ee3036f9211e9c113fe4c2f568ef/paratest-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a259c758c2b6e9fb73fb451728c7fa28", "sha256": "f5c21786ab08072ed5899fa53826138046ba8c141e7398e3bc278035f1cec1b5" }, "downloads": -1, "filename": "paratest-0.0.3.tar.gz", "has_sig": false, "md5_digest": "a259c758c2b6e9fb73fb451728c7fa28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2139, "upload_time": "2016-03-29T05:45:08", "url": "https://files.pythonhosted.org/packages/02/cb/53697edc490f551c154fcb613e1c54dfabb7c780dffcaab3686f68054808/paratest-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "a4f162c7fbb146bbcba1fbf0f187be60", "sha256": "a545b0795814b2da281b3ee177b4a4926ea5ae1ae8d34a6883431743d03d0011" }, "downloads": -1, "filename": "paratest-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "a4f162c7fbb146bbcba1fbf0f187be60", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 3566, "upload_time": "2016-04-07T05:17:59", "url": "https://files.pythonhosted.org/packages/b7/e8/97ee15778bb67f3c57176e1e0194a25d473e9b4268c15b373b4c9ad555fa/paratest-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39c956e5e561be23c0033ca24479c063", "sha256": "32c715917e25671c0317f166f35945aa4106eb50d25f75dfce1c62bd21be22ee" }, "downloads": -1, "filename": "paratest-0.0.4.tar.gz", "has_sig": false, "md5_digest": "39c956e5e561be23c0033ca24479c063", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2229, "upload_time": "2016-04-07T05:18:15", "url": "https://files.pythonhosted.org/packages/95/53/1d8092ab47a93f9a857ae8e247cf4faa05b829777b4b4a49d8f103417058/paratest-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "497d15e7b611dfde8c541a3bae847d0f", "sha256": "b1593a4c57458dcdfb8d7f418cace735b24b8e36605c648a1d9ba7c18c48dd36" }, "downloads": -1, "filename": "paratest-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "497d15e7b611dfde8c541a3bae847d0f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 8163, "upload_time": "2016-04-07T05:23:58", "url": "https://files.pythonhosted.org/packages/9f/c3/ed7a5d98578cf55ac9941aa829c64432ddab081f073290af0b1b1bf691b1/paratest-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eca205ff3acfac76fea02bd17714811a", "sha256": "d29dafe8302a2ce3c11ceb0c7b850bb9c82595844beff7631e92d6977d01f832" }, "downloads": -1, "filename": "paratest-0.0.5.tar.gz", "has_sig": false, "md5_digest": "eca205ff3acfac76fea02bd17714811a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6454, "upload_time": "2016-04-07T05:24:17", "url": "https://files.pythonhosted.org/packages/2d/7f/cb2345812baccbcb5c75f9d461d05f049b5b9df6c7bfac40bced45ec8e77/paratest-0.0.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "7274c003a0855e830a23fc1d1e2690b7", "sha256": "08c90f4eaf1a9b2c30e84ddecb3c91ac835d3808a095f19989c649d4c2558060" }, "downloads": -1, "filename": "paratest-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7274c003a0855e830a23fc1d1e2690b7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 2240, "upload_time": "2016-03-21T06:36:58", "url": "https://files.pythonhosted.org/packages/58/6b/02692cca1caec54c6cbdf88b22bf882b11f9de2adeeaa3f1a497d836df02/paratest-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60943d5e3ea3ee74a943ea09ec7f9208", "sha256": "cd60b73865d87ff6b5cd3f01e51a9709e531b106b79ee95711ab09c9c3672d02" }, "downloads": -1, "filename": "paratest-1.0.0.tar.gz", "has_sig": false, "md5_digest": "60943d5e3ea3ee74a943ea09ec7f9208", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1547, "upload_time": "2016-03-21T06:36:53", "url": "https://files.pythonhosted.org/packages/52/ba/e94763dcc1f11fd59e5e8c41c06afd2ea2706ffacc7848cb9e46dbb8e457/paratest-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "38527d6a4ac5156f03e9808d287456ed", "sha256": "69af726b6bd3b03e845ccbc670affafc6db46777a5a39d87a17e3e41b72dd491" }, "downloads": -1, "filename": "paratest-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "38527d6a4ac5156f03e9808d287456ed", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11161, "upload_time": "2016-04-07T06:17:56", "url": "https://files.pythonhosted.org/packages/c8/91/6328f56b7937e686c169e8a037cea327125e9bcbd03d1bf8b97797f92991/paratest-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3eb977ac0501aa35364e294e8ee6970", "sha256": "f0f473993d26d81beda00585ba61125a32a5fac86d3f2c983d9bb83f52d6f0a4" }, "downloads": -1, "filename": "paratest-1.0.1.tar.gz", "has_sig": false, "md5_digest": "a3eb977ac0501aa35364e294e8ee6970", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7384, "upload_time": "2016-04-07T06:18:19", "url": "https://files.pythonhosted.org/packages/7b/99/735b3e22b9b834964027221b668ef9d84337dc8788f1bbc42d2d45452efb/paratest-1.0.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "6a1b982db7eec3b4376770c9f8d07d9a", "sha256": "46cb37006b6dec64eb5a7456b5b465d94a6f937ce8bd355e5b980f41869097d6" }, "downloads": -1, "filename": "paratest-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a1b982db7eec3b4376770c9f8d07d9a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14804, "upload_time": "2016-11-20T09:19:05", "url": "https://files.pythonhosted.org/packages/70/00/0d913af683347b0a595d5c2004463ed86e0b6ab3196d993d4c978c0ca1e2/paratest-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13a60b1e0f79ef2f51ecdfc6e6348fd6", "sha256": "5b18cf55c4c3e6ec2ed7655a1b8b5be9727f9211b14f68f203bb26d0a878c6f5" }, "downloads": -1, "filename": "paratest-2.0.0.tar.gz", "has_sig": false, "md5_digest": "13a60b1e0f79ef2f51ecdfc6e6348fd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9004, "upload_time": "2016-11-20T09:19:03", "url": "https://files.pythonhosted.org/packages/b6/d3/78d77c2f7aaec02836358578309f0f92a784cb24d2aad81f0771ece79af7/paratest-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "a357a970345fefceee8060cfcce66e27", "sha256": "81a5148c38b4b0e766f1627155c6bf03e3a0643d8bee7480b6b5af00b18064d4" }, "downloads": -1, "filename": "paratest-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a357a970345fefceee8060cfcce66e27", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 15319, "upload_time": "2016-11-22T06:40:10", "url": "https://files.pythonhosted.org/packages/e2/30/15e1f00012c72e12cdd06697e6d07e5f15b778be8d03adb5533461babd3d/paratest-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "074169ea3b11ceb11e47f0d1e4930cfe", "sha256": "2ef25c38dabd11d61bac409514ef09098edea23d0d1db6411c6f0cc168dc10c0" }, "downloads": -1, "filename": "paratest-2.1.0.tar.gz", "has_sig": false, "md5_digest": "074169ea3b11ceb11e47f0d1e4930cfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9471, "upload_time": "2016-11-22T06:40:08", "url": "https://files.pythonhosted.org/packages/b3/32/f0ecf9bbe74a1c8d8536a20b9414cdf9adc9fb43c2565f8505e912d90614/paratest-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "81f8af95acc06cbf7c4dbcc726ddabba", "sha256": "c666b2ec76852ffeb34a70e02eef48c2d92a370f5c324f3c6ebdd8a9584b3d24" }, "downloads": -1, "filename": "paratest-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "81f8af95acc06cbf7c4dbcc726ddabba", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 15335, "upload_time": "2016-11-22T06:46:03", "url": "https://files.pythonhosted.org/packages/f1/a7/d76c1e2cae8dd5db9c0aff934d5fa400fa63ec570d1583b301f29f159ff7/paratest-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1715a9a6f70eaab879f3f1ce0690ab28", "sha256": "c7fbc533936bef7b43364b396722dc15ff63affb49442b99f9e48172bccced2f" }, "downloads": -1, "filename": "paratest-2.1.1.tar.gz", "has_sig": false, "md5_digest": "1715a9a6f70eaab879f3f1ce0690ab28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9468, "upload_time": "2016-11-22T06:46:00", "url": "https://files.pythonhosted.org/packages/12/4f/a203111906960191c481f2da3f41a4fb552ac294a893b3c1ae85697129fb/paratest-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "94af21b684ab8273f036584b590cbf8d", "sha256": "bf17e220145a3fb35e81a68d59e7219680811fc6d8c6df0f4b920bbde2739421" }, "downloads": -1, "filename": "paratest-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "94af21b684ab8273f036584b590cbf8d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 15377, "upload_time": "2016-11-24T22:41:09", "url": "https://files.pythonhosted.org/packages/4e/c8/06f7bbfcbc673e8f5d9b588492936cee7eca267108acb488ab37c3929003/paratest-2.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c216f05e503fb0269e123d597e8cf00f", "sha256": "2e8dda54fd4dc540959e32d92bcdae13a2f8368a34ae9868fdac519f67dd2e2a" }, "downloads": -1, "filename": "paratest-2.1.2.tar.gz", "has_sig": false, "md5_digest": "c216f05e503fb0269e123d597e8cf00f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9523, "upload_time": "2016-11-24T22:41:06", "url": "https://files.pythonhosted.org/packages/d1/8e/f049cb8816b6e94e816bf99036d9abb078260f7d8e4f60122d99c9ea201f/paratest-2.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "94af21b684ab8273f036584b590cbf8d", "sha256": "bf17e220145a3fb35e81a68d59e7219680811fc6d8c6df0f4b920bbde2739421" }, "downloads": -1, "filename": "paratest-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "94af21b684ab8273f036584b590cbf8d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 15377, "upload_time": "2016-11-24T22:41:09", "url": "https://files.pythonhosted.org/packages/4e/c8/06f7bbfcbc673e8f5d9b588492936cee7eca267108acb488ab37c3929003/paratest-2.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c216f05e503fb0269e123d597e8cf00f", "sha256": "2e8dda54fd4dc540959e32d92bcdae13a2f8368a34ae9868fdac519f67dd2e2a" }, "downloads": -1, "filename": "paratest-2.1.2.tar.gz", "has_sig": false, "md5_digest": "c216f05e503fb0269e123d597e8cf00f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9523, "upload_time": "2016-11-24T22:41:06", "url": "https://files.pythonhosted.org/packages/d1/8e/f049cb8816b6e94e816bf99036d9abb078260f7d8e4f60122d99c9ea201f/paratest-2.1.2.tar.gz" } ] }