{ "info": { "author": "Strike Team", "author_email": "elenaramyan@workfront.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3" ], "description": "Influxdb Pytest Plugin\n======================\n\nPytest plugin designed for reporting test results to the 'InfluxDB'.\n\nTable of Contents\n=================\n- About this documentation\n- Usage\n- Add custom fields as an additional data(test level and suite level)\n- Send attachment\n\nAbout this documentation\n========================\nWelcome to the Influxdb Pytest Plugin documentation!\n\nThis style guide provides set of editorial guidelines for anyone using Influxdb Pytest Plugin.\n\nUsage\n=====\n\n**Installation**\n\n pip install influxdb-pytest-plugin\n\n**Launching**\n\nTo run a test with influxdb-pytest-plugin, the '--influxdb-pytest' flag should be provided.\n\n pytest -sv --influxdb-pytest\n\nPrepare the config file :code:`pytest.ini` in root directory of tests and/or call next to the run command the mandatory config variables which are mentioned below:\n\n\nThe next mandatory fields should be mentioned in :code:`pytest.ini` or run through command line without '--' prefix:\n\n- :code:`--influxdb_host` - host of the influxdb\n- :code:`--influxdb_name` - name of influxdb table\n\nAnd here are the optional fields:\n\n- :code:`--influxdb_port` - port of the influxdb\n- :code:`--influxdb_user` - username of influxdb user\n- :code:`--influxdb_password` - password of influxdb user\n- :code:`--influxdb_project` - project name\n- :code:`--influxdb_version` - custom version of project\n- :code:`--influxdb_run_id` - run id (Can be passed as CI variable)\n\nExample of :code:`pytest.ini`:\n\n.. code-block:: text\n\n [pytest]\n influxdb_host = \n influxdb_port = \n influxdb_name = \n influxdb_user = \n influxdb_password = \n influxdb_project = \n influxdb_version = \n influxdb_run_id = \n\nAdd custom fields as an additional data\n=======================================\n**Add custom fields for test result**\nFor adding custom fields as an additional data for test result the code like below should be added in conftest.py.\n\nExample 1:\n\n.. code-block:: python\n\n @pytest.fixture(scope='function', autouse=True)\n def test_suite(request):\n from influxdb_pytest_plugin import TestResultDTO\n test_result_dto = TestResultDTO()\n test_name = request.node.nodeid\n TestResultDTO.set_tag_values(test_result_dto, test_name, {'tag1': 'tag_value1', 'tag2': 'tag_value2'})\n TestResultDTO.set_field_values(test_result_dto, test_name, {'field1': 'field_value1', 'field2': 'field_value2'})\n\n**Add custom fields for suite result**\nFor adding custom fields as an additional data for suite result the :code:`pytest_terminal_summary` pytest plugin like below in conftest.py.\n\n.. code-block:: python\n\n @pytest.hookimpl(hookwrapper=True)\n def pytest_terminal_summary(config, terminalreporter):\n from influxdb_pytest_plugin import SuiteResultDTO\n suite_result_dto = SuiteResultDTO()\n SuiteResultDTO.set_tag_values(suite_result_dto, {'tag1': 'tag_value1'})\n SuiteResultDTO.set_field_values(suite_result_dto, {'field1': 'field_value1'})\n yield\n\nExample 2:\nAdd custom fields via :code:`--influxdb_values` config, just fill the below template and set as :code:`--influxdb_values` config:\n\n.. code-block:: python\n\n {\n \"fields\": {\n \"test_result\": {\n },\n \"suite_result\": {\n }\n },\n \"tags\": {\n \"test_result\": {\n },\n \"suite_result\": {\n }\n }\n }\n\nSend screenshot as attachment\n=============================\nFor sending the screenshot to the influxdb, the :code:`screenshot_url` fixture should be used in function scope like below:\n\nExample 1:\n\n.. code-block:: python\n\n @pytest.fixture(scope=\"function\")\n def chrome_driver_init(request, screenshot_url, pytestconfig):\n chrome_driver = webdriver.Chrome()\n request.cls.driver = chrome_driver\n yield\n if request.node.rep_call.failed and pytestconfig.getoption('--influxdb-pytest'):\n screenshot_link = 'URL_EXAMPLE'\n chrome_driver.save_screenshot(screenshot_link)\n screenshot_url(screenshot_link)\n chrome_driver.close()\n\nExample 2:\n\n.. code-block:: python\n\n @pytest.hookimpl(tryfirst=True, hookwrapper=True)\n def pytest_runtest_makereport(item, call):\n outcome = yield\n rep = outcome.get_result()\n if rep.when == 'call':\n try:\n screenshot_path = web_client.current.save_screenshot(\"Screenshot link\")\n item.user_properties = (\"screenshot_url\", screenshot_path)\n # web_driver.save_screenshot and other magic to add screenshot to your report\n except Exception as e:\n print('Exception while screen-shot creation: {}'.format(e))", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "influxdb-pytest-plugin", "package_url": "https://pypi.org/project/influxdb-pytest-plugin/", "platform": "", "project_url": "https://pypi.org/project/influxdb-pytest-plugin/", "project_urls": null, "release_url": "https://pypi.org/project/influxdb-pytest-plugin/0.2.57/", "requires_dist": null, "requires_python": "", "summary": "Plugin for influxdb and pytest integration.", "version": "0.2.57" }, "last_serial": 5970530, "releases": { "0.2.24": [ { "comment_text": "", "digests": { "md5": "ba02cbd468e8dd1852c6a95146c79aa4", "sha256": "0dda511ddf46492c00e468db050281d0cda3a2c7a2825a3ab48d044a42a264b2" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.24.tar.gz", "has_sig": false, "md5_digest": "ba02cbd468e8dd1852c6a95146c79aa4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8007, "upload_time": "2019-09-27T19:42:48", "url": "https://files.pythonhosted.org/packages/47/55/4013ec2e2fbf9018868c277eb8a60880cdf9c09cc7a0dfb98f94b6003e9e/influxdb_pytest_plugin-0.2.24.tar.gz" } ], "0.2.25": [ { "comment_text": "", "digests": { "md5": "2c2ac7b60972fadfa9ba1cdabbdb6e85", "sha256": "a42746541b4f8da4843436f30757f6f0711d078eca45fc3857dc22f304d05c31" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.25.tar.gz", "has_sig": false, "md5_digest": "2c2ac7b60972fadfa9ba1cdabbdb6e85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8016, "upload_time": "2019-09-30T19:08:48", "url": "https://files.pythonhosted.org/packages/5a/55/79aec6fd6c79ff68e06fe1ad90e15a17f06846013cd832ff0360820df818/influxdb_pytest_plugin-0.2.25.tar.gz" } ], "0.2.26": [ { "comment_text": "", "digests": { "md5": "061649d8dafb07ce19f5a658b54f3b26", "sha256": "3b3c100028dbc093dfb4fc9f1ef8a4ae7d9f247c1e3493a9a99b5e7d26b70c3c" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.26.tar.gz", "has_sig": false, "md5_digest": "061649d8dafb07ce19f5a658b54f3b26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8262, "upload_time": "2019-10-01T13:24:23", "url": "https://files.pythonhosted.org/packages/7f/21/38aa42bfac72f92826df67f15746ae1853792da9f34beae4f4e9b5dec14b/influxdb_pytest_plugin-0.2.26.tar.gz" } ], "0.2.28": [ { "comment_text": "", "digests": { "md5": "61f7d2adda0086a0a50ed0ee82dd5e7d", "sha256": "ef3d2212a82bf334d1b870d157df587e4cca555ce747aad0e74b370877b6aea1" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.28.tar.gz", "has_sig": false, "md5_digest": "61f7d2adda0086a0a50ed0ee82dd5e7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8277, "upload_time": "2019-10-01T13:41:52", "url": "https://files.pythonhosted.org/packages/48/d1/a144dbf6bcee2d03c74a075911f9fdbb79274316f2543264bdb5daed6ccb/influxdb_pytest_plugin-0.2.28.tar.gz" } ], "0.2.29": [ { "comment_text": "", "digests": { "md5": "f93143739033be67a54a63b9691a0b03", "sha256": "4bf19b314aac621e44122b5b6cd629601061d65d2d6ae77e71114cd5d9aab306" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.29.tar.gz", "has_sig": false, "md5_digest": "f93143739033be67a54a63b9691a0b03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8296, "upload_time": "2019-10-01T13:47:12", "url": "https://files.pythonhosted.org/packages/17/9f/3daa1d20dfee801dfbfb1fdadcc8d702d1fa927cffe6d8f30e8568f663be/influxdb_pytest_plugin-0.2.29.tar.gz" } ], "0.2.30": [ { "comment_text": "", "digests": { "md5": "813d7121aa116b6826b7c14b47e28d58", "sha256": "5e67cc34cb0311bd1f895624ca7c6a293323b718037c3aa5c25b6b822d54fe37" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.30.tar.gz", "has_sig": false, "md5_digest": "813d7121aa116b6826b7c14b47e28d58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8300, "upload_time": "2019-10-01T14:05:48", "url": "https://files.pythonhosted.org/packages/b2/36/85df6c6cceb47f01274abed7161895e4ad7eb4bae1b75afbb90523fd5bf1/influxdb_pytest_plugin-0.2.30.tar.gz" } ], "0.2.31": [ { "comment_text": "", "digests": { "md5": "7955863d2e75ba61bd11692484c2e804", "sha256": "9adf42b6b55ce9e19f4700b628098444b03f6564639348b67a31d6ff17360099" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.31.tar.gz", "has_sig": false, "md5_digest": "7955863d2e75ba61bd11692484c2e804", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8309, "upload_time": "2019-10-01T14:17:33", "url": "https://files.pythonhosted.org/packages/be/d8/2c5512a9b33600d9551207ab86ffaacc5fe5303411ff083489a810ce5a21/influxdb_pytest_plugin-0.2.31.tar.gz" } ], "0.2.32": [ { "comment_text": "", "digests": { "md5": "93f3d9654ee0dd16ed306a0285313fb8", "sha256": "c97a5a15b261dc3fb889c7a30b6beb4ccac94b3bc63bf8d86a268b72a6ff9331" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.32.tar.gz", "has_sig": false, "md5_digest": "93f3d9654ee0dd16ed306a0285313fb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8307, "upload_time": "2019-10-01T15:14:31", "url": "https://files.pythonhosted.org/packages/ef/ab/ef72bebb98ffe10c43fb933201517d5f1cf1b9625e7e8110c31cc004292b/influxdb_pytest_plugin-0.2.32.tar.gz" } ], "0.2.33": [ { "comment_text": "", "digests": { "md5": "4c7635239adc59f0e82c79cc14bdadf0", "sha256": "5ad15ab68d00c5eeb6df9e771800296e00c80db7f73b94bba6769d3d53216864" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.33.tar.gz", "has_sig": false, "md5_digest": "4c7635239adc59f0e82c79cc14bdadf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8356, "upload_time": "2019-10-01T15:30:16", "url": "https://files.pythonhosted.org/packages/9a/a2/c47b2b27074baa4871d091ebb50214d1a477ebd556e3851f534bfb10d1ef/influxdb_pytest_plugin-0.2.33.tar.gz" } ], "0.2.34": [ { "comment_text": "", "digests": { "md5": "dbb0fdff0c0aaec1e4aaf686fd1b1cac", "sha256": "32f4b29948c661b1911a956fea72061331e8950420ead01d1d6c2d657619bb9e" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.34.tar.gz", "has_sig": false, "md5_digest": "dbb0fdff0c0aaec1e4aaf686fd1b1cac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8358, "upload_time": "2019-10-01T15:40:45", "url": "https://files.pythonhosted.org/packages/54/b2/92318d033fb1677874a9689b70e1c2ec7172887cd6ab0561602b96d9651c/influxdb_pytest_plugin-0.2.34.tar.gz" } ], "0.2.35": [ { "comment_text": "", "digests": { "md5": "1875c0052528d78a6fc69eea884898d5", "sha256": "e612558db391008a5ba8666f297753c22de004a44b6594ecd73a8d32ffe40c37" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.35.tar.gz", "has_sig": false, "md5_digest": "1875c0052528d78a6fc69eea884898d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8365, "upload_time": "2019-10-01T15:46:49", "url": "https://files.pythonhosted.org/packages/64/fa/e031b56911e7327f8639ee9536ddc61b66cd692b6bb769251e1da260d2e8/influxdb_pytest_plugin-0.2.35.tar.gz" } ], "0.2.36": [ { "comment_text": "", "digests": { "md5": "afda961f68720ab827460ae2d63f6609", "sha256": "d04b5009c8c4d927f980f57fa7593a0d5cf5a1abe4f77275f437d87768e53d3d" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.36.tar.gz", "has_sig": false, "md5_digest": "afda961f68720ab827460ae2d63f6609", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8371, "upload_time": "2019-10-01T15:52:08", "url": "https://files.pythonhosted.org/packages/2b/ed/eb8c579caa479e77c5566a7f3517771c53d288da0e4f82dbbbedb84deb8f/influxdb_pytest_plugin-0.2.36.tar.gz" } ], "0.2.37": [ { "comment_text": "", "digests": { "md5": "3fc1c65978f6bc19a45e3b5ca73c33e7", "sha256": "3d49720bba255b10b6eb314e092ec9fe29f86a4b571526c7d4da1b4b36bde290" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.37.tar.gz", "has_sig": false, "md5_digest": "3fc1c65978f6bc19a45e3b5ca73c33e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8375, "upload_time": "2019-10-01T15:59:31", "url": "https://files.pythonhosted.org/packages/d1/a7/dedabc3f81ea3d1491b4139908eec5a2c0cc209068b9979565d834fc59d3/influxdb_pytest_plugin-0.2.37.tar.gz" } ], "0.2.38": [ { "comment_text": "", "digests": { "md5": "460ea44ab184d1267a37d4c91105b90e", "sha256": "4adaeeaa32cde50c9883b3219eb6677481edc042e4d9c7623d4b7aaa13a100c0" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.38.tar.gz", "has_sig": false, "md5_digest": "460ea44ab184d1267a37d4c91105b90e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8384, "upload_time": "2019-10-01T16:06:13", "url": "https://files.pythonhosted.org/packages/e7/29/c2a804e1542f4bce22df8098bf54f5a2381b112904854b2f33d8431590fc/influxdb_pytest_plugin-0.2.38.tar.gz" } ], "0.2.40": [ { "comment_text": "", "digests": { "md5": "7a6a5685f051899bc2c761f67848d89e", "sha256": "be91a4566a508f385903bd8738098916fe9b4ddbad5feae3decc7bf6dcd08968" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.40.tar.gz", "has_sig": false, "md5_digest": "7a6a5685f051899bc2c761f67848d89e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8378, "upload_time": "2019-10-01T16:20:30", "url": "https://files.pythonhosted.org/packages/b3/31/666bb4f514ed5aaf18f146e56cc94bba744721ed1db92bc34401542dcd3e/influxdb_pytest_plugin-0.2.40.tar.gz" } ], "0.2.41": [ { "comment_text": "", "digests": { "md5": "8d7629411dea14440ed5ac8151100971", "sha256": "1441700aa780466b6c2be6f4966409213a68fa9501027d2fec2b3bdf24ff521f" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.41.tar.gz", "has_sig": false, "md5_digest": "8d7629411dea14440ed5ac8151100971", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8377, "upload_time": "2019-10-01T16:26:01", "url": "https://files.pythonhosted.org/packages/f4/b6/11eaabd0778ff607e9c7836bf89d7f7f249c35c161f585a9b8c38f805897/influxdb_pytest_plugin-0.2.41.tar.gz" } ], "0.2.42": [ { "comment_text": "", "digests": { "md5": "42a24e9a2845e05aba457ac69f5f52ff", "sha256": "221dd55a7767a4cf69a22bbcd9ca898feb73c5cf11c574f5b8e02665c0b9000a" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.42.tar.gz", "has_sig": false, "md5_digest": "42a24e9a2845e05aba457ac69f5f52ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8360, "upload_time": "2019-10-01T18:55:03", "url": "https://files.pythonhosted.org/packages/25/3f/f5a3632fd65b92509791fd2eae437c4f24cf31eaa279f1b68336818a0ee1/influxdb_pytest_plugin-0.2.42.tar.gz" } ], "0.2.43": [ { "comment_text": "", "digests": { "md5": "72d2a04826796bf7e329083c947c87fd", "sha256": "db45f82acd7fd481f91ce147e954456065c846d0700d3d6ca5991c7555cda4f7" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.43.tar.gz", "has_sig": false, "md5_digest": "72d2a04826796bf7e329083c947c87fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8338, "upload_time": "2019-10-01T19:17:30", "url": "https://files.pythonhosted.org/packages/f8/83/b2ace76d6a9b1267967be7c249f70495b6f53faef0926f388deefb5aac23/influxdb_pytest_plugin-0.2.43.tar.gz" } ], "0.2.44": [ { "comment_text": "", "digests": { "md5": "8c7dc2c51d9344b12e88512fc1a0a1b3", "sha256": "c840ae55458b6e4eba76a318e94390a6f414c44703e3a007fbf487ced188e3b2" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.44.tar.gz", "has_sig": false, "md5_digest": "8c7dc2c51d9344b12e88512fc1a0a1b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8349, "upload_time": "2019-10-01T19:24:39", "url": "https://files.pythonhosted.org/packages/da/f1/455698099506307dfb08b51d52844d84abdd7fd3a9b464fc9edd73702785/influxdb_pytest_plugin-0.2.44.tar.gz" } ], "0.2.45": [ { "comment_text": "", "digests": { "md5": "962b99da2b58bddcce0ab6626408129d", "sha256": "3a6d011d79b214ae1d8c50c1ad9e669dddbb24e10d633ade7f55fad0b622b9bf" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.45.tar.gz", "has_sig": false, "md5_digest": "962b99da2b58bddcce0ab6626408129d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8332, "upload_time": "2019-10-01T19:31:10", "url": "https://files.pythonhosted.org/packages/f3/98/f731b4e039f1dadd32bbb2ceedc422997e02e72a6eccc228777c4439cbfb/influxdb_pytest_plugin-0.2.45.tar.gz" } ], "0.2.46": [ { "comment_text": "", "digests": { "md5": "82f86e220efdee14d3736fb45766a889", "sha256": "fe74f65f8ace65c96af845f7bccc994074cda7f535935a9e529eee3bf5cd0690" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.46.tar.gz", "has_sig": false, "md5_digest": "82f86e220efdee14d3736fb45766a889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8897, "upload_time": "2019-10-04T15:09:02", "url": "https://files.pythonhosted.org/packages/fa/af/d1e790463a79eb07a285db56ea333848fd0350cb12a5037320e6c5c95f4e/influxdb_pytest_plugin-0.2.46.tar.gz" } ], "0.2.47": [ { "comment_text": "", "digests": { "md5": "ef65a89e77087c0429a5ced137033a58", "sha256": "6057ad6d951e6fd1c1acd661eb8419e11d4aa1e67d179c5f2d0e3337e5fbb29d" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.47.tar.gz", "has_sig": false, "md5_digest": "ef65a89e77087c0429a5ced137033a58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8788, "upload_time": "2019-10-07T14:14:57", "url": "https://files.pythonhosted.org/packages/21/36/f9b88fd069ad85698be023ce03b8bdc3a45cc7c3457bbb0f35dc904f6afd/influxdb_pytest_plugin-0.2.47.tar.gz" } ], "0.2.48": [ { "comment_text": "", "digests": { "md5": "bb6164886b7f16339640a5ff94b11d08", "sha256": "522e54774871563308304e8da33cc60e01c997b2db4b75491f111a87995e275f" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.48.tar.gz", "has_sig": false, "md5_digest": "bb6164886b7f16339640a5ff94b11d08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8753, "upload_time": "2019-10-07T14:36:58", "url": "https://files.pythonhosted.org/packages/44/ea/6809561ad2d359a145ec161e29e4fdbcedfe8730119fdb3215fb94c61f3a/influxdb_pytest_plugin-0.2.48.tar.gz" } ], "0.2.49": [ { "comment_text": "", "digests": { "md5": "4f64bb111980058db034f0746f596438", "sha256": "70ee0546d91c5c58e30ec7ca015ddb93319449a80f7111ec0a5367b5074b4261" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.49.tar.gz", "has_sig": false, "md5_digest": "4f64bb111980058db034f0746f596438", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8753, "upload_time": "2019-10-07T15:09:47", "url": "https://files.pythonhosted.org/packages/0e/5d/9b186d3d225e4f07dafdebc7e02e828838758c87085a8ca2aa93d39cdaf7/influxdb_pytest_plugin-0.2.49.tar.gz" } ], "0.2.50": [ { "comment_text": "", "digests": { "md5": "0cd9d83cb0fe3666aab89581e6f88dcd", "sha256": "1bb0446fcdacfc2dc2314c12b7ff9ddfc2b22eef49d9531a7da6545708c90192" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.50.tar.gz", "has_sig": false, "md5_digest": "0cd9d83cb0fe3666aab89581e6f88dcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8758, "upload_time": "2019-10-08T12:18:04", "url": "https://files.pythonhosted.org/packages/fc/bc/6d3db55becbbe94fef4bb6c32def1664e9965a0df290c39c75ac3314d866/influxdb_pytest_plugin-0.2.50.tar.gz" } ], "0.2.51": [ { "comment_text": "", "digests": { "md5": "6df4e1eaf6268e5dc45cb37c9310e676", "sha256": "16452505e9d2abe388d50164a9cf7943a3ca313d0694e12baae2ba8bdf3d935f" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.51.tar.gz", "has_sig": false, "md5_digest": "6df4e1eaf6268e5dc45cb37c9310e676", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8805, "upload_time": "2019-10-08T15:56:49", "url": "https://files.pythonhosted.org/packages/f2/81/eb2b22db9c4b9f7606b003df6ffefe093c79d86530ca4febe05e00aa447b/influxdb_pytest_plugin-0.2.51.tar.gz" } ], "0.2.52": [ { "comment_text": "", "digests": { "md5": "ecfabafc8f790fff887d0b57c2f30610", "sha256": "e92862077c8d32e4af94691ebe4e04fab5c876b9a7bfb12f1c22c31d8d55fac9" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.52.tar.gz", "has_sig": false, "md5_digest": "ecfabafc8f790fff887d0b57c2f30610", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8814, "upload_time": "2019-10-08T16:04:25", "url": "https://files.pythonhosted.org/packages/11/d1/f51ebfc27d4d568cf91528640624f8cf3104867e9acb7ddbccfb20c11be8/influxdb_pytest_plugin-0.2.52.tar.gz" } ], "0.2.53": [ { "comment_text": "", "digests": { "md5": "d55055595bd469df3667fc78a51fdd00", "sha256": "04ad6f1538ce8ff59718b019c7c0ce4d727c7f82a14e8eb2da4ada9cd4e18126" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.53.tar.gz", "has_sig": false, "md5_digest": "d55055595bd469df3667fc78a51fdd00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8841, "upload_time": "2019-10-09T08:17:36", "url": "https://files.pythonhosted.org/packages/d1/6e/47bf9f6c916d5c3f78b414375433f37f21b968775096ef4994ce855c3a25/influxdb_pytest_plugin-0.2.53.tar.gz" } ], "0.2.54": [ { "comment_text": "", "digests": { "md5": "50d481e77ba38a8e1192308e80f64ac9", "sha256": "240d6a83694e2a88745e61ff08b1fbd3e945e1d8b392324f0c3dbe91d63c7b7a" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.54.tar.gz", "has_sig": false, "md5_digest": "50d481e77ba38a8e1192308e80f64ac9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8857, "upload_time": "2019-10-09T09:09:38", "url": "https://files.pythonhosted.org/packages/c7/41/ffc889ecd4970be82172fe0d61496129c144be372685a654ec16c3bdb7ac/influxdb_pytest_plugin-0.2.54.tar.gz" } ], "0.2.55": [ { "comment_text": "", "digests": { "md5": "375872853ba3ff7b3e5b086d9193428a", "sha256": "f2d5794863e5e477a408d0b8b9da984e02ba7b760541b9ab120d33faf7a84aa2" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.55.tar.gz", "has_sig": false, "md5_digest": "375872853ba3ff7b3e5b086d9193428a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9011, "upload_time": "2019-10-09T20:17:16", "url": "https://files.pythonhosted.org/packages/a2/82/09592704ad5ebb1a7c07d71389f832418cac8ce7b11328ebe654e0af59dd/influxdb_pytest_plugin-0.2.55.tar.gz" } ], "0.2.56": [ { "comment_text": "", "digests": { "md5": "475e5293791a68cdacb64b8d99e8c2ba", "sha256": "806e575b43b511f10bf4102a70f563edcd31c57b7f7a487f4c9d722b8541e956" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.56.tar.gz", "has_sig": false, "md5_digest": "475e5293791a68cdacb64b8d99e8c2ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8956, "upload_time": "2019-10-10T09:43:42", "url": "https://files.pythonhosted.org/packages/1a/6a/f59ec2af8047ab248b6fd5b70c8c5ab123b2a0edf563d8dbe4633b85a4b3/influxdb_pytest_plugin-0.2.56.tar.gz" } ], "0.2.57": [ { "comment_text": "", "digests": { "md5": "4676207bf049b66b59815592710831c8", "sha256": "49f9d87194fd07f46d0a4d64b9ef3470cd3de21a4d45d5e42c778740d91b416f" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.57.tar.gz", "has_sig": false, "md5_digest": "4676207bf049b66b59815592710831c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9059, "upload_time": "2019-10-14T09:15:08", "url": "https://files.pythonhosted.org/packages/33/0c/5c752cfd1c7e0a158714f69a179255c8fca1682d979326ff54979108cfa2/influxdb_pytest_plugin-0.2.57.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4676207bf049b66b59815592710831c8", "sha256": "49f9d87194fd07f46d0a4d64b9ef3470cd3de21a4d45d5e42c778740d91b416f" }, "downloads": -1, "filename": "influxdb_pytest_plugin-0.2.57.tar.gz", "has_sig": false, "md5_digest": "4676207bf049b66b59815592710831c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9059, "upload_time": "2019-10-14T09:15:08", "url": "https://files.pythonhosted.org/packages/33/0c/5c752cfd1c7e0a158714f69a179255c8fca1682d979326ff54979108cfa2/influxdb_pytest_plugin-0.2.57.tar.gz" } ] }