{ "info": { "author": "Strike Team", "author_email": "elenaramyan@workfront.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3" ], "description": "Influxdb Pytest Plugin\n======================\n\nInfluxdb `Pytest `_ Plugin designed for reporting test results to the `InfluxDB `_\nand provide with the live test results report which can be later integrated with a reporting tool.\nIt's developed as pytest plugin and distributed via `pypi `_.\n\n.. image:: https://pypip.in/v/pytest-influxdb/badge.png\n :alt: Release Status\n :target: https://pypi.python.org/pypi/pytest-influxdb\n.. image:: https://pypip.in/d/pytest-influxdb/badge.png\n :alt: Downloads\n :target: https://pypi.python.org/pypi/pytest-influxdb\n\nTable of Contents\n=================\n\n- `About this documentation <#id1>`_\n- `Usage <#id2>`_\n- `Add custom fields as an additional data <#id3>`_\n- `Send attachment <#send-screenshot-as-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 pytest-influxdb-plugin\n\n**Launching**\n\nTo run a test with pytest-influxdb-plugin, the '--pytest-influxdb' flag should be provided.\n\n pytest -sv --pytest-influxdb\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/url 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_merged` - merge configuration\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('--pytest-influxdb'):\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": "pytest-influxdb", "package_url": "https://pypi.org/project/pytest-influxdb/", "platform": "", "project_url": "https://pypi.org/project/pytest-influxdb/", "project_urls": null, "release_url": "https://pypi.org/project/pytest-influxdb/0.0.32/", "requires_dist": null, "requires_python": "", "summary": "Plugin for influxdb and pytest integration.", "version": "0.0.32", "yanked": false, "yanked_reason": null }, "last_serial": 10119713, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "375e012ac4746138e1989b25561a35ac", "sha256": "0ba8df29a079b9fabce009b399bf1c6c9598bb81dd06e5ee67f13deb74ab156a" }, "downloads": -1, "filename": "pytest_influxdb-0.0.1.tar.gz", "has_sig": false, "md5_digest": "375e012ac4746138e1989b25561a35ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9208, "upload_time": "2019-10-24T13:30:07", "upload_time_iso_8601": "2019-10-24T13:30:07.086342Z", "url": "https://files.pythonhosted.org/packages/f9/1a/8a4294d82048c958769b8ce5743dc252877b43963c80cb2420fc471ae2b9/pytest_influxdb-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "99840b7d812302b37e71ab5e3db79ea5", "sha256": "791bef1af353e9d0a51caf17074f6cec7e438809bff3057463158f61354a74df" }, "downloads": -1, "filename": "pytest_influxdb-0.0.10.tar.gz", "has_sig": false, "md5_digest": "99840b7d812302b37e71ab5e3db79ea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8266, "upload_time": "2019-10-29T18:27:41", "upload_time_iso_8601": "2019-10-29T18:27:41.366957Z", "url": "https://files.pythonhosted.org/packages/33/54/b4866df9c7edd0d4670d275379562ccc8766375700cb99a8cc21062c84fd/pytest_influxdb-0.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "5e6e9fbb7e20e5c08df61f663fec6a14", "sha256": "ff5805aca5433b036b8fe1b3bddb95bc376ed421ed0de32e568487bc2108c078" }, "downloads": -1, "filename": "pytest_influxdb-0.0.11.tar.gz", "has_sig": false, "md5_digest": "5e6e9fbb7e20e5c08df61f663fec6a14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8847, "upload_time": "2019-10-30T09:56:16", "upload_time_iso_8601": "2019-10-30T09:56:16.957003Z", "url": "https://files.pythonhosted.org/packages/0d/4b/4d4341df828c9f1f7a358eb019c3034ae6773c45dbc0f12dc0ad48def0dc/pytest_influxdb-0.0.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "d0866b9daf4d265d4474ee02a53654da", "sha256": "4d12ab60fc7626d238855ef69fa2050301a178f290423ac0e0962451685676bc" }, "downloads": -1, "filename": "pytest_influxdb-0.0.12.tar.gz", "has_sig": false, "md5_digest": "d0866b9daf4d265d4474ee02a53654da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8789, "upload_time": "2019-10-30T10:06:03", "upload_time_iso_8601": "2019-10-30T10:06:03.777611Z", "url": "https://files.pythonhosted.org/packages/63/3a/a77e7a249e687fb3991a0a6fd72f15f8db7ed843822c5806f18b18dd20d1/pytest_influxdb-0.0.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "35a3a51c21be87009bbe633b0018f1dd", "sha256": "cbbb0c2c8c1cedc9f0b6edbc2c5a6f9a46219a03ec822a72687de63f51d9d88d" }, "downloads": -1, "filename": "pytest_influxdb-0.0.13.tar.gz", "has_sig": false, "md5_digest": "35a3a51c21be87009bbe633b0018f1dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9288, "upload_time": "2019-10-30T20:02:02", "upload_time_iso_8601": "2019-10-30T20:02:02.417604Z", "url": "https://files.pythonhosted.org/packages/04/43/20794b0ffae25faefc8ad275e8aeb0f75e28a5adbf3ab97707cc8220bcdb/pytest_influxdb-0.0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "bdb25bca3aaee568026a9bc4fe5a5821", "sha256": "ffa87b21c6d9b527a2c425708e297715d2da9124b38050d373fb539edc57fbbf" }, "downloads": -1, "filename": "pytest_influxdb-0.0.14.tar.gz", "has_sig": false, "md5_digest": "bdb25bca3aaee568026a9bc4fe5a5821", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9736, "upload_time": "2019-10-30T21:13:03", "upload_time_iso_8601": "2019-10-30T21:13:03.156533Z", "url": "https://files.pythonhosted.org/packages/b0/40/cd3efc1bd936b3aa1c357648e428ce2147f8cc578a1d8d6bee003945c399/pytest_influxdb-0.0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "ee6246e03b0894a8549f6d97f06215df", "sha256": "9e058ce324e3ad4c8613abecc4228c5964372e694871d2bca6993600a94fcabe" }, "downloads": -1, "filename": "pytest_influxdb-0.0.15.tar.gz", "has_sig": false, "md5_digest": "ee6246e03b0894a8549f6d97f06215df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9691, "upload_time": "2019-10-30T21:18:29", "upload_time_iso_8601": "2019-10-30T21:18:29.123502Z", "url": "https://files.pythonhosted.org/packages/c5/50/c8bff5b91819ce2dadd1d4c203d4c50955461ed368c5c4afc5fae30bc9b0/pytest_influxdb-0.0.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "3a7d706bbb884c4a1c2e018177693d5c", "sha256": "a71b67fa8ae7b8f74d9939bd16b5da836a159c6ffc736c503d036f93108fcab5" }, "downloads": -1, "filename": "pytest_influxdb-0.0.17.tar.gz", "has_sig": false, "md5_digest": "3a7d706bbb884c4a1c2e018177693d5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9714, "upload_time": "2019-10-30T21:29:00", "upload_time_iso_8601": "2019-10-30T21:29:00.720974Z", "url": "https://files.pythonhosted.org/packages/a7/50/9a68644eecb05350e9b0f4bf978657a5533d3a235f7f51e8158534990524/pytest_influxdb-0.0.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "d9fb97231d30bbca11c10521c0c50957", "sha256": "66e2bf016157fe0eedf6cc3defe57765260c8e65b738ba569c43e536959fccff" }, "downloads": -1, "filename": "pytest_influxdb-0.0.18.tar.gz", "has_sig": false, "md5_digest": "d9fb97231d30bbca11c10521c0c50957", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9736, "upload_time": "2019-11-20T09:36:20", "upload_time_iso_8601": "2019-11-20T09:36:20.205941Z", "url": "https://files.pythonhosted.org/packages/91/78/6f7157bf2eab13cdb75d13fb165d241cac14ccf4d71a1486d408044a7e25/pytest_influxdb-0.0.18.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "7182814a261266fa3505452c49338342", "sha256": "94c4967bfeb6cf4c90da20f4cdc765bf6ae6cbc1fd7bc10a5a703e7c547c9e15" }, "downloads": -1, "filename": "pytest_influxdb-0.0.19.tar.gz", "has_sig": false, "md5_digest": "7182814a261266fa3505452c49338342", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9808, "upload_time": "2019-12-04T13:34:25", "upload_time_iso_8601": "2019-12-04T13:34:25.944937Z", "url": "https://files.pythonhosted.org/packages/7e/56/b33c06d1bdf66b9ced5b897df5569cf63ff6c3fd1a62304b50d8cb4152ba/pytest_influxdb-0.0.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "09df34e1d2eedf1bb2ff150a6601ce9f", "sha256": "16f61ef723e2587750b2e66d4d5dff77c504de548cd86fc79e5549f84a30d3b9" }, "downloads": -1, "filename": "pytest_influxdb-0.0.2.tar.gz", "has_sig": false, "md5_digest": "09df34e1d2eedf1bb2ff150a6601ce9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9205, "upload_time": "2019-10-24T13:37:53", "upload_time_iso_8601": "2019-10-24T13:37:53.822952Z", "url": "https://files.pythonhosted.org/packages/13/f1/ef293a740f88c80bc04bbc44dc4a71fb5d417d6fa3c5f31bd7874ae28c9a/pytest_influxdb-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "b9330675ea8453573d26b2287981466d", "sha256": "62e4b0ca65cce7337905d2d33870e2578980ada60cb7731e8720ce199432e576" }, "downloads": -1, "filename": "pytest_influxdb-0.0.20.tar.gz", "has_sig": false, "md5_digest": "b9330675ea8453573d26b2287981466d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9796, "upload_time": "2019-12-04T15:07:41", "upload_time_iso_8601": "2019-12-04T15:07:41.522781Z", "url": "https://files.pythonhosted.org/packages/35/69/200ab0877c58a79973e31b3325c5e67548c85a1d4d637e50932b365d9023/pytest_influxdb-0.0.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "e45290fdf6d36c10a5b65f8c2221b997", "sha256": "9890d5bb367ecff2b9b8d6059a082dd6bdcd6bb352e33dfe346ae92b65d643f8" }, "downloads": -1, "filename": "pytest_influxdb-0.0.21.tar.gz", "has_sig": false, "md5_digest": "e45290fdf6d36c10a5b65f8c2221b997", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9878, "upload_time": "2019-12-12T18:48:32", "upload_time_iso_8601": "2019-12-12T18:48:32.645263Z", "url": "https://files.pythonhosted.org/packages/8b/eb/b66e8d1baf8fa7ca3175539f6290e5bf7eaa1e7bea8503a3a75969be4e01/pytest_influxdb-0.0.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "017b8f5b102fba20386141b3eabca6d2", "sha256": "480499783230f139eb1cf183939169a39c2c345c71de6abcf4bd4e644241c767" }, "downloads": -1, "filename": "pytest_influxdb-0.0.22.tar.gz", "has_sig": false, "md5_digest": "017b8f5b102fba20386141b3eabca6d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9893, "upload_time": "2019-12-12T19:14:56", "upload_time_iso_8601": "2019-12-12T19:14:56.291441Z", "url": "https://files.pythonhosted.org/packages/1f/1a/5434f2fed63b262348558e99ac5a77dd23c8253432369922c8c3503d74a0/pytest_influxdb-0.0.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "c71edf7f3409cf10f67ecf222668ba9f", "sha256": "f872f685af941271539f00057ebaae4955d36c9ca6e47429cdce4b505e8aa4a8" }, "downloads": -1, "filename": "pytest_influxdb-0.0.23.tar.gz", "has_sig": false, "md5_digest": "c71edf7f3409cf10f67ecf222668ba9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9884, "upload_time": "2019-12-12T19:31:31", "upload_time_iso_8601": "2019-12-12T19:31:31.371334Z", "url": "https://files.pythonhosted.org/packages/01/b8/ff16428d879f93271bdfc329428af6531b77aae3918586f24a5b4535448e/pytest_influxdb-0.0.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "b1d3de0b1a0461eb898298f7e6faf6e7", "sha256": "d5de2fe5206e0152e4da94a8864cde9e4f9c1a9bd6e7478306d5253a2d0d064d" }, "downloads": -1, "filename": "pytest_influxdb-0.0.24.tar.gz", "has_sig": false, "md5_digest": "b1d3de0b1a0461eb898298f7e6faf6e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9889, "upload_time": "2019-12-13T07:47:15", "upload_time_iso_8601": "2019-12-13T07:47:15.633231Z", "url": "https://files.pythonhosted.org/packages/87/3b/e371c71eddf04c53de52955cb5a7571a81b991bcbe286c1d6a9cbabf50f0/pytest_influxdb-0.0.24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "0f7f17b79f88ffcc928a06943a964ee0", "sha256": "f0402ed19437caa3eb1ddee7255dc3648227c74687b5b89affeb9749d08ee697" }, "downloads": -1, "filename": "pytest_influxdb-0.0.25.tar.gz", "has_sig": false, "md5_digest": "0f7f17b79f88ffcc928a06943a964ee0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9927, "upload_time": "2019-12-13T11:07:37", "upload_time_iso_8601": "2019-12-13T11:07:37.674366Z", "url": "https://files.pythonhosted.org/packages/00/a9/ec2e3d68473d3f2e223fc1602baf8e6214b6c0b283bf1aa1357ca54996b0/pytest_influxdb-0.0.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "594714a837a44b23d48830b303fb0d16", "sha256": "c32f853582eb75eea73b375c1ba23aefc66f7b8d3c340dceb623e9191dafffa1" }, "downloads": -1, "filename": "pytest_influxdb-0.0.26.tar.gz", "has_sig": false, "md5_digest": "594714a837a44b23d48830b303fb0d16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8783, "upload_time": "2019-12-18T11:47:19", "upload_time_iso_8601": "2019-12-18T11:47:19.213598Z", "url": "https://files.pythonhosted.org/packages/63/72/08ce6dbc7e888ab1d57ecea213703de4b0cee295c2f4547d2bd485b404f8/pytest_influxdb-0.0.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "b2581150d0caf1ff2c8276d291f8f44d", "sha256": "a8de593cb0a37d908c845732a21f4a6af0a20fb9cc10c3bb3f9909fa369be7ef" }, "downloads": -1, "filename": "pytest_influxdb-0.0.27.tar.gz", "has_sig": false, "md5_digest": "b2581150d0caf1ff2c8276d291f8f44d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8784, "upload_time": "2020-04-01T19:33:57", "upload_time_iso_8601": "2020-04-01T19:33:57.807838Z", "url": "https://files.pythonhosted.org/packages/4d/5c/9136e80126afcd42f79593a51ee63443e679d97c17378e668de80866d7b1/pytest_influxdb-0.0.27.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "4cf47cbd5972fdd7dfb0b6dac75e8252", "sha256": "0278e1b2427a520511c21ac6a201fdd6a76634632e8b2bfc42bba5d9c5764ec8" }, "downloads": -1, "filename": "pytest_influxdb-0.0.28.tar.gz", "has_sig": false, "md5_digest": "4cf47cbd5972fdd7dfb0b6dac75e8252", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8801, "upload_time": "2020-06-05T19:33:33", "upload_time_iso_8601": "2020-06-05T19:33:33.074606Z", "url": "https://files.pythonhosted.org/packages/57/b5/3d5a1a8848557438958025c30eb3e19407da10a8bdf1a387b9544799683a/pytest_influxdb-0.0.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.29": [ { "comment_text": "", "digests": { "md5": "8d460802ed197fed38b8badac1c5bd1c", "sha256": "270d88359abe7352bc29ef7e0288a393555ce7458da8d54a243e3ba970c435c7" }, "downloads": -1, "filename": "pytest_influxdb-0.0.29.tar.gz", "has_sig": false, "md5_digest": "8d460802ed197fed38b8badac1c5bd1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10725, "upload_time": "2020-07-07T09:23:06", "upload_time_iso_8601": "2020-07-07T09:23:06.583172Z", "url": "https://files.pythonhosted.org/packages/32/33/4213e912b3c93d645bd9a14f2bb714025a9b2fe9b276db9d48614b038de9/pytest_influxdb-0.0.29.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "58d5611e39dfc009e6b7ee06a3e6382e", "sha256": "d20ef1c9f77fc507da4e0c9fb2c7dd18a69c11cb05447cfe623cb3b3bc4878ad" }, "downloads": -1, "filename": "pytest_influxdb-0.0.3.tar.gz", "has_sig": false, "md5_digest": "58d5611e39dfc009e6b7ee06a3e6382e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8751, "upload_time": "2019-10-24T13:56:15", "upload_time_iso_8601": "2019-10-24T13:56:15.520917Z", "url": "https://files.pythonhosted.org/packages/20/49/52b7e26e99ec9f0baeabd473c00da24715f4f0038970667d12119b8f1b27/pytest_influxdb-0.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.31": [ { "comment_text": "", "digests": { "md5": "9274d7cc50324061373c686ab2dd9f3f", "sha256": "16e179ed37a1ed42356dafecf82a5c2402529a6c1ead57e97020ccd80bd9a68f" }, "downloads": -1, "filename": "pytest_influxdb-0.0.31.tar.gz", "has_sig": false, "md5_digest": "9274d7cc50324061373c686ab2dd9f3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10726, "upload_time": "2020-09-22T15:39:12", "upload_time_iso_8601": "2020-09-22T15:39:12.861635Z", "url": "https://files.pythonhosted.org/packages/93/79/e4941c5e61bf8ac38a6adbe45294b822c9e5738483e8a11deddc8f8bc4c4/pytest_influxdb-0.0.31.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.32": [ { "comment_text": "", "digests": { "md5": "4d3208c10377e1eae20449a7254a89b8", "sha256": "a2881ecb86b75c90ac04eb1941a3d1ecb19715fd77112dc972a900810c9300f0" }, "downloads": -1, "filename": "pytest_influxdb-0.0.32.tar.gz", "has_sig": false, "md5_digest": "4d3208c10377e1eae20449a7254a89b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14811, "upload_time": "2021-04-20T14:52:29", "upload_time_iso_8601": "2021-04-20T14:52:29.022898Z", "url": "https://files.pythonhosted.org/packages/d2/06/88f4cd9fbc2da13c457f2011851238e03d2429e71d54ad168dea0859d4b2/pytest_influxdb-0.0.32.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "52572f4cff1088e793becd66b020576b", "sha256": "0a344f2c5055b7cc2ca4158284e5b323274fc2fcf23129ddeadf1965049319cf" }, "downloads": -1, "filename": "pytest_influxdb-0.0.4.tar.gz", "has_sig": false, "md5_digest": "52572f4cff1088e793becd66b020576b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8753, "upload_time": "2019-10-24T14:01:31", "upload_time_iso_8601": "2019-10-24T14:01:31.406103Z", "url": "https://files.pythonhosted.org/packages/e2/a6/ce98d770bac1fe603e5f99252e1eff40ab52e44527a6b8b65ecdf0a1d1a2/pytest_influxdb-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "86f69dd10f7fb7f430bd070759cc3f26", "sha256": "7a4c76a93ef9b13f50e5631c47440bf4ed4cd68e5fef3d816027cda7caedd10f" }, "downloads": -1, "filename": "pytest_influxdb-0.0.5.tar.gz", "has_sig": false, "md5_digest": "86f69dd10f7fb7f430bd070759cc3f26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8760, "upload_time": "2019-10-24T14:07:28", "upload_time_iso_8601": "2019-10-24T14:07:28.672574Z", "url": "https://files.pythonhosted.org/packages/e9/a4/a3179ad18ab619c305d0636f3e1e602a2a7c8a1a1b4040dbda1b8aaae4c5/pytest_influxdb-0.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "671754e456ed03e5f33716f94183c665", "sha256": "3a0603d012833185eb9b43ac82e7c1207f60711def6aa100b23d57eca61a4267" }, "downloads": -1, "filename": "pytest_influxdb-0.0.6.tar.gz", "has_sig": false, "md5_digest": "671754e456ed03e5f33716f94183c665", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6545, "upload_time": "2019-10-28T13:12:07", "upload_time_iso_8601": "2019-10-28T13:12:07.598555Z", "url": "https://files.pythonhosted.org/packages/2f/3f/55b7f6e471b82bec24a8c29bfde29b121ebe25fba9f25bb91d397b616b07/pytest_influxdb-0.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "ab24b0dd52da0810f002dd23f4be15c5", "sha256": "a0293269cd7f25a790e6233ca65118f758aab09c31c2a87cd1f0e2556a70667d" }, "downloads": -1, "filename": "pytest_influxdb-0.0.7.tar.gz", "has_sig": false, "md5_digest": "ab24b0dd52da0810f002dd23f4be15c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6685, "upload_time": "2019-10-29T12:49:20", "upload_time_iso_8601": "2019-10-29T12:49:20.724218Z", "url": "https://files.pythonhosted.org/packages/f5/12/8e5a9164abebd631d41cc7f0c3f97722ca07850fc0de5ca3fb0c8ad82c3e/pytest_influxdb-0.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "045ea2d14e3dfba6e63acd5f0d152342", "sha256": "0c3f72138a6752bca3b7254ddf956bc067c4d57f633f997ada6a33fe65036eed" }, "downloads": -1, "filename": "pytest_influxdb-0.0.8.tar.gz", "has_sig": false, "md5_digest": "045ea2d14e3dfba6e63acd5f0d152342", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8012, "upload_time": "2019-10-29T13:24:14", "upload_time_iso_8601": "2019-10-29T13:24:14.155207Z", "url": "https://files.pythonhosted.org/packages/69/25/f89eb8b68686ebf6fd95b39d3408df93334d440214db725d06b0be854e5c/pytest_influxdb-0.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "480c521798cd315f6cb21e4349653474", "sha256": "94cf0f974598d614a422dabab700de3e4324ee81741aa60eb900719d8d8c138e" }, "downloads": -1, "filename": "pytest_influxdb-0.0.9.tar.gz", "has_sig": false, "md5_digest": "480c521798cd315f6cb21e4349653474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8238, "upload_time": "2019-10-29T16:03:37", "upload_time_iso_8601": "2019-10-29T16:03:37.660503Z", "url": "https://files.pythonhosted.org/packages/ab/3a/b80a616b23de56a854adafce74b9db639dbe419060f07964fd1c1ec857e2/pytest_influxdb-0.0.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4d3208c10377e1eae20449a7254a89b8", "sha256": "a2881ecb86b75c90ac04eb1941a3d1ecb19715fd77112dc972a900810c9300f0" }, "downloads": -1, "filename": "pytest_influxdb-0.0.32.tar.gz", "has_sig": false, "md5_digest": "4d3208c10377e1eae20449a7254a89b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14811, "upload_time": "2021-04-20T14:52:29", "upload_time_iso_8601": "2021-04-20T14:52:29.022898Z", "url": "https://files.pythonhosted.org/packages/d2/06/88f4cd9fbc2da13c457f2011851238e03d2429e71d54ad168dea0859d4b2/pytest_influxdb-0.0.32.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }