{ "info": { "author": "Clearcode - The A Room", "author_email": "thearoom@clearcode.cc", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Testing", "Topic :: Utilities" ], "description": "pytest-dbfixtures\n=================\n\n\n.. image:: https://img.shields.io/pypi/v/pytest-dbfixtures.svg\n :target: https://pypi.python.org/pypi/pytest-dbfixtures/\n :alt: Latest PyPI version\n\n.. image:: https://readthedocs.org/projects/pytest-dbfixtures/badge/?version=v1.0.0\n :target: http://pytest-dbfixtures.readthedocs.org/en/v1.0.0/\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/wheel/pytest-dbfixtures.svg\n :target: https://pypi.python.org/pypi/pytest-dbfixtures/\n :alt: Wheel Status\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest-dbfixtures.svg\n :target: https://pypi.python.org/pypi/pytest-dbfixtures/\n :alt: Supported Python Versions\n\n.. image:: https://img.shields.io/pypi/l/pytest-dbfixtures.svg\n :target: https://pypi.python.org/pypi/pytest-dbfixtures/\n :alt: License\n\nOverview\n--------\n\n\nPytest dbfixtures was a pytest plugin that makes it a lot easier\nto set up proper database or storage engine for testing.\n\nAs of version 1.0.0 every process fixture got moved into it's own pytest plugin for easier maintenance,\nand pytest-dbfixture itself got converted into metapacakge.\n\nList of packages:\n\n* `pytest-elasticsearch `_\n* `pytest-postgresql `_\n* `pytest-dynamodb `_\n* `pytest-rabbitmq `_\n* `pytest-mysql `_\n* `pytest-redis `_\n* `pytest-mongo `_\n\nPlease see individual packages on hot to use them, although their usage is pretty similar.\n\n\nCHANGES\n=======\n\n1.0.0\n------\n\n- [enhancements] removed all leftover code and limited documentation, directed to each indicidual packages.\n- [enhancements] split out Redis fixtures into separate package. See `pytest-redis `_\n- [enhancements] split out RabbitMQ fixtures into separate package. See `pytest-rabbitmq `_\n- [enhancements] split out MySQL fixtures into separate package. See `pytest-mysql `_\n- [enhancements] split out DynamoDB fixtures into separate package. See `pytest-dynamodb `_\n\n0.17.0\n------\n\n- [enhancement] split out PostgreSQL fixtures into separate package. See `pytest-postgresql `_\n- [enhancement] split out MongoDB fixtures into separate package. See `pytest-mongo `_\n\n0.16.0\n------\n\n- [enhancements] Postgresql client fixture closes other postgresql connection to the database before droping database - prevents the fixture/tests from hanging in some cases\n- [enhancements] mysql to use unique tmpdir option for mysql_* commands\n- [enhancements] use semicolon to terminate postgresql CREATE/DROP DATABASE statements\n- [bugfix] removed unneded dependency\n- [enhancement] split out elasticsearch fixtures into separate package. See `pytest-elasticsearch `_\n- [feature] use tmpfile.gettempdir instead of hardcoded /tmp directory\n\n0.15.0\n------\n\n- [fix] support for rabbitpy 0.27.x\n- [feature] Random port selection ports accept tuples and sets. replace string representation [backward incompatible]\n\n\n0.14.3\n------\n\n- [feature] Add support for delayTransientStatuses flag (DynamoDB)\n\n0.14.2\n------\n\n- [fix] Update DynamoDB in howtouse\n\n0.14.1\n------\n\n- [fix] packaging/changelog fix\n\n0.14.0\n------\n\n- [feature] add fixture for DynamoDB\n\n0.13.1\n------\n\n- [bugfix] fix dbfixtures packaging\n\n0.13.0\n------\n\n- [feature] make it easier to support future postgresql out of the box\n- [feature] support for postgresql 9.5\n- [docs] add contribute guidelines\n- [feature] add info about minimal version supported - closes #132\n- [enhancements] - moved source code into src folder\n- [feature] python3.5 compatibility\n- [docs] enhance docs - refs #126\n- [feature] PGsql connection error on FreeBSD jailed environments\n\n In FreeBSD jailed environments the loopback interface can not be used to\n connect to pgsql, because it points to the loopback interface of the host and\n not the jail.\n\n Thus, it seems to pgsql like the connection is comming from the ip address\n assigned to the jail.\n\n This ensures that pgsql can be connected to from any host, when\n run on a FreeBSD systems. This this package can be used in FreeBSD\n jailed environments\n\n- [feature] Use log destination param for pgsql\n\n This commit ensures that `stderr` is used for logging, by\n specifying the command line parameter.\n\n On FreeBSD this is very important otherwise syslog will be used and\n the db-fixtures will hang as it looks in the expected log file and\n loops forever waiting for a \"database is ready\" entry to appear...\n `log_destination=stderr` is default on most systems and can be set in\n `postgresql.conf` or given as an command line argument.\n\n `Read more `_\n\n0.12.0\n------\n\n- [bugfix] mongodb fixture no longer removes any of system.* collections\n- [bugfix] configured pytest-dbfixtures to work with pymlconf versions compatible with Python 3\n\n0.11.0\n------\n\n- make pytest-dbfixtures compatible with mirakuru 0.5.0\n\n\n0.10.0\n------\n\n- fix W503 pep8 errors, that appeared after new pylama got released\n- update to be able to use pytest-dbfixtures with pymongo 3\n- ability to properly use also beta versions of postgresql releases. (previously only stable versions were targeted)\n\n\n0.9.0\n-----\n\n- add ability to set custom location for logs (might be useful for analysing logs from tests)\n- added postgresql 9.4 to supported versions.\n\n0.8.2\n-----\n\n- Use port number in default RabbitMQ node name.\n\n This allows using just the port='?' argument to rabbitmq_proc to run multiple\n independent RabbitMQ instances for use with xdist to parallelize tests on a\n single machine.\n\n- Old versions of Redis notification\n\n displays a message about old version of redis\n\n0.8.1\n-----\n\n- Feature: random ports selection\n Adds a possibility of passing '?' in port= argument of process fixtures.\n- Removes 'port' from db fixtures\n- Fixes postgres missing host - previously using config.postgresql.unixsocketdir\n\n\n0.7.0\n-----\n\n- redisdb fixture allows to specify client connection class\n- redisdb fixture uses now StrictRedis by default (backward incompatible)\n\n0.6.0\n-----\n\n- replaced *MySQLdb* with it's fork *mysqlclient* - compatibility with python3\n- renamed mysqldb fixture to mysql to keep it consistent with other client fixtures.\n- replaced *pika* with python 3 compatible rabbitpy\n- removed deprecated mysqldb_session/mysql_session\n- bugfix of rabbitmq fixture: cast rabbitmq queues and exchanges to str due to pamq having problems\n- internal changes: removed GentleKillingExecutor as mirakuru already implements same functionality\n\n0.5.2\n-----\n\n* syntax fixes for python 3\n* moved postgresql starting code into it's own executor\n* xdist distributed hosts testing bugfix (but xdist parallelization on one host won't work)\n\n0.5.1\n-----\n\n* make rabbitmq logs persistent\n\n0.5.0\n-----\n\n* update mirakuru to min 0.2\n* os.killpg to terminate process\n* add tests coverage on coveralls\n\n0.4.22\n------\n\n* remove creating old RABBITMQ env variables\n\n0.4.21\n------\n\n* remove elasticsearch home folder at process teardown\n* set elasticsearch index.store.type to memory by default\n* localized elasticsearch instance by default\n* replaced summon_process with mirakuru\n\n0.4.20\n------\n\n* RabbitMQ process fixture is session scoped\n* rabbitmq fixture factory accepts custom teardown\n\n\n0.4.19\n------\n\n* StopRunningExecutor to simply return if process had been already killed.\n\n0.4.18\n------\n\n* MongoDB fixtures can be now initialized by factories\n\n\n0.4.17\n------\n\n* Bugfix: params in redis fixture\n\n\n0.4.16\n-------\n\n* Add params to mysql fixture\n\n\n0.4.15\n-------\n\n* Client fixtures now check if process (process fixture) is running before\n every test and starts process if it was terminated after previous test.\n\n\n0.4.14\n-------\n\n* Bugfix: Now we don't overwrite postgresql config in postgres_proc\n\n\n0.4.13\n-------\n\n* Bugfix of rabbitmq_proc fixture - now it works with scope=function\n\n\n0.4.12\n-------\n\n* Overrides SimpleExecutor's behavior with a try of more gentle terminating\n subprocess before killing it.\n* Deprecate scope for mysqldb fixture and change it to function by default.\n* RabbitMQ factories support (multiple rabbit fixtures).\n\n\n0.4.10\n-------\n\n* Postgresql multiple versions proper support\n* Default timeouts and waits for process executors\n\n\n0.4.8\n-------\n\n* introduced Elasticsearch fixture\n\n\n0.4.6\n-------\n\n* mysql fixture now uses factories\n\n\n0.4.4\n-------\n\n* postgresql fixtures and fixture factories\n* small code quality improvements\n* pylama code check\n\n\n0.4.3\n-------\n\n* splits rabbitmq fixture into process/client fixtures", "description_content_type": null, "docs_url": "https://pythonhosted.org/pytest-dbfixtures/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ClearcodeHQ/pytest-dbfixtures", "keywords": "tests py.test pytest fixture redis mongo mongodb rabbit rabbitmq mysql postgres postgresql elasticsearch", "license": "LGPLv3+", "maintainer": "", "maintainer_email": "", "name": "pytest-dbfixtures", "package_url": "https://pypi.org/project/pytest-dbfixtures/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pytest-dbfixtures/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/ClearcodeHQ/pytest-dbfixtures" }, "release_url": "https://pypi.org/project/pytest-dbfixtures/1.0.0/", "requires_dist": null, "requires_python": "", "summary": "Databases fixtures plugin for py.test.", "version": "1.0.0" }, "last_serial": 2537488, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "38dea82dd748d790967d76271ba49a9a", "sha256": "e2581cc471d7e1f01ae02a5b8edce90458cc90f7019e90e5a229e0117871f14d" }, "downloads": -1, "filename": "pytest-dbfixtures-0.0.1.tar.gz", "has_sig": false, "md5_digest": "38dea82dd748d790967d76271ba49a9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3841, "upload_time": "2013-09-04T13:45:42", "url": "https://files.pythonhosted.org/packages/eb/59/e006b5bc1e533eb9d8269cf52cc0d5fe7b50642c236818996e9f585265e5/pytest-dbfixtures-0.0.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "00754f2a02c8fb763903f522a01bdf0e", "sha256": "7a81e689b46c47bb7a8d6e1a4d8744c0d181004e54a322fb2a3e88a9195009ba" }, "downloads": -1, "filename": "pytest_dbfixtures-0.10.0-py2-none-any.whl", "has_sig": false, "md5_digest": "00754f2a02c8fb763903f522a01bdf0e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 33876, "upload_time": "2015-04-22T19:19:38", "url": "https://files.pythonhosted.org/packages/94/80/8c4824bab4fcdaf2e4739f5f27a0341fe7c73d8c9c91b4443c1966198bc2/pytest_dbfixtures-0.10.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a2ba5c926cbab10592dfcd836907a49", "sha256": "09b28d05dc0f6b66bf42feb0e035e6738419251cf2259c91e8be10b6d70d694c" }, "downloads": -1, "filename": "pytest_dbfixtures-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9a2ba5c926cbab10592dfcd836907a49", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 33884, "upload_time": "2015-04-22T19:21:46", "url": "https://files.pythonhosted.org/packages/66/17/0699c8ed09e049b76d7730dc16ead6d73956e55e7e1dd7a796b27f5fd1ee/pytest_dbfixtures-0.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d524a0b747679558dd6e23c0960b0cff", "sha256": "45686d3b759c4c7e3f9e2517e908fa2e7158151e7b480d9f55fa2de1059eb40b" }, "downloads": -1, "filename": "pytest-dbfixtures-0.10.0.tar.gz", "has_sig": false, "md5_digest": "d524a0b747679558dd6e23c0960b0cff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17230, "upload_time": "2015-04-22T19:19:35", "url": "https://files.pythonhosted.org/packages/66/db/75770f9b80d761e8422386bb9f36a66035eaac4318bf230117eb91b4da8e/pytest-dbfixtures-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "0450b576de5d9dec2e270e2ed9524f02", "sha256": "a0d59447adaa7d5073b332418f4ae8f4974605633af5ed4675619f2616f2428e" }, "downloads": -1, "filename": "pytest_dbfixtures-0.11.0-py2-none-any.whl", "has_sig": false, "md5_digest": "0450b576de5d9dec2e270e2ed9524f02", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34197, "upload_time": "2015-05-12T08:19:18", "url": "https://files.pythonhosted.org/packages/a5/3d/30c7d9de627bff0af2fd9722ffc8f4bbe2df0de33ff98745051cc37289c6/pytest_dbfixtures-0.11.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70cf980d6266f6b6d613273222afded7", "sha256": "aa6a8adb80b191f4bf600afdf75b7ddba02517369182ee84590319c6e5f6c119" }, "downloads": -1, "filename": "pytest-dbfixtures-0.11.0.tar.gz", "has_sig": false, "md5_digest": "70cf980d6266f6b6d613273222afded7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17796, "upload_time": "2015-05-12T08:19:15", "url": "https://files.pythonhosted.org/packages/12/f7/1741417d140ebc0a89b3000dff9d49ecf7fe6c622de6ac7b8247a40ca5a8/pytest-dbfixtures-0.11.0.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "ae24f1e469da2b3c28bf5b4620d60ba1", "sha256": "e0f0d7891e80d919748b43214ec663fe8f576b41837fa98f808a2c00f5e7bc35" }, "downloads": -1, "filename": "pytest_dbfixtures-0.12.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ae24f1e469da2b3c28bf5b4620d60ba1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34128, "upload_time": "2015-06-05T18:16:39", "url": "https://files.pythonhosted.org/packages/da/6c/92050edf2c6988f83c80a890d810a1a6f0d1ce6b83ae16d09367b80b9567/pytest_dbfixtures-0.12.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab2e06cb8fe70ed53733eb78d6cf88ec", "sha256": "9ea05b022cb1a14861e4f916720e63ce92dbf6c925d4f945739aadf1e52953bf" }, "downloads": -1, "filename": "pytest-dbfixtures-0.12.0.tar.gz", "has_sig": false, "md5_digest": "ab2e06cb8fe70ed53733eb78d6cf88ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17514, "upload_time": "2015-06-05T18:16:35", "url": "https://files.pythonhosted.org/packages/73/ec/809c893cfd5742769b008023cb66bf15946d673de83c7a1c157e824d7a7b/pytest-dbfixtures-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "8e057194765420281a296d1480a6af2c", "sha256": "d0e7bf0f50d74ac8e26c158e72f43073ac36bad2f30a06d39b9e4f40537ebddd" }, "downloads": -1, "filename": "pytest_dbfixtures-0.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8e057194765420281a296d1480a6af2c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 34324, "upload_time": "2016-02-09T13:16:59", "url": "https://files.pythonhosted.org/packages/6c/e6/96298db9320e3a8e7c8f0aedda0718f9c56cf779e18df0bc86554e27a039/pytest_dbfixtures-0.13.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e7e7d1d7d10c37626fb8085557372a8a", "sha256": "a252caf7d14a8c5231b7a1994f1dbd42e403be8a47769a0d8a94840087e95e59" }, "downloads": -1, "filename": "pytest-dbfixtures-0.13.0.tar.gz", "has_sig": false, "md5_digest": "e7e7d1d7d10c37626fb8085557372a8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19036, "upload_time": "2016-02-09T13:16:22", "url": "https://files.pythonhosted.org/packages/d7/c1/7d35dd9ee81d065d973812ef80653060c3bd2349a3679741347ab4d02df8/pytest-dbfixtures-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "cd651541f5acdfb0ec2b5d93b8c445b4", "sha256": "30b8c8e9732d11cca2bf826a27ee32ae1d87cde92a735f04300383b7900b8a4c" }, "downloads": -1, "filename": "pytest_dbfixtures-0.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cd651541f5acdfb0ec2b5d93b8c445b4", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 35486, "upload_time": "2016-02-09T21:22:31", "url": "https://files.pythonhosted.org/packages/4e/d9/e2c5150c9e706b98f5eb05537db00548902ae1ab9dc67fcfda041f0f450f/pytest_dbfixtures-0.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64f1dbd3aed4fd700b6fd241a54d47e9", "sha256": "e78bc6e282465b377f3368a961d583ebc4caf3ed04796272828af2af81dfcbb5" }, "downloads": -1, "filename": "pytest-dbfixtures-0.13.1.tar.gz", "has_sig": false, "md5_digest": "64f1dbd3aed4fd700b6fd241a54d47e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20409, "upload_time": "2016-02-09T21:19:53", "url": "https://files.pythonhosted.org/packages/cf/f9/5f8f7d9a9450bf3df201532682307a725f1aba55b717494373a8e74d0ac6/pytest-dbfixtures-0.13.1.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "05dd302e1dbd6ff8dcf3d7c6feabfbb2", "sha256": "28d4e3e3e08678e634df2eae896c3a20f540dc0f9ae73962758b5dfd3cb73d71" }, "downloads": -1, "filename": "pytest-dbfixtures-0.14.0.tar.gz", "has_sig": false, "md5_digest": "05dd302e1dbd6ff8dcf3d7c6feabfbb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21398, "upload_time": "2016-06-21T11:54:54", "url": "https://files.pythonhosted.org/packages/07/89/0b769c6d6769896fe46870e9957a3eeec8fe583b76c1aae1dc1bd3d40246/pytest-dbfixtures-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "02eb5ce2ed8ea6b070f4ec9bd71cb412", "sha256": "0706f8e68db3144f2943058f4b9630c993072359a2bd0293084ebca6b657e958" }, "downloads": -1, "filename": "pytest-dbfixtures-0.14.1.tar.gz", "has_sig": false, "md5_digest": "02eb5ce2ed8ea6b070f4ec9bd71cb412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21412, "upload_time": "2016-06-21T12:14:54", "url": "https://files.pythonhosted.org/packages/d2/43/ba630930a984ba5f1e108e9d0d4773be89f7642b7ca47105d8cd8c4f6a78/pytest-dbfixtures-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "a526517a157606419da20be471b4ec60", "sha256": "93e505da3f0742e758c245aa542f8b45dca6755953ba122271e9c74f620014db" }, "downloads": -1, "filename": "pytest-dbfixtures-0.14.2.tar.gz", "has_sig": false, "md5_digest": "a526517a157606419da20be471b4ec60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21444, "upload_time": "2016-06-21T15:11:10", "url": "https://files.pythonhosted.org/packages/a2/b2/990dbdc6404dfb6e9f6ff68a1b872a88172d03245d980ead5ddb81a093d0/pytest-dbfixtures-0.14.2.tar.gz" } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "677018bbc5c3b9b82a9d527f6470c171", "sha256": "cc2137b906901c049bc9e35aa438fe965471b5946b6e52acd2b52c11e66b2519" }, "downloads": -1, "filename": "pytest-dbfixtures-0.14.3.tar.gz", "has_sig": false, "md5_digest": "677018bbc5c3b9b82a9d527f6470c171", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21611, "upload_time": "2016-06-27T21:38:17", "url": "https://files.pythonhosted.org/packages/e9/95/e60f51684ad1f11937a5e1f95f0054151d37c6d25a4c37a295ecd0f24101/pytest-dbfixtures-0.14.3.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "3d7c675d666df120deb0be34e3f4a725", "sha256": "a52ec728dc7dfa09be680219979e8026b0e13eaacd1eeeaa63cd066fef963138" }, "downloads": -1, "filename": "pytest-dbfixtures-0.15.0.tar.gz", "has_sig": false, "md5_digest": "3d7c675d666df120deb0be34e3f4a725", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21876, "upload_time": "2016-07-27T13:30:12", "url": "https://files.pythonhosted.org/packages/5f/5e/b368067e4567b7f706e8b47668803e3db0d4168c2677eb6806c380d90067/pytest-dbfixtures-0.15.0.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "82262125ef6572fcf93e6ac2bb152680", "sha256": "28ab377104aa8b3ff9aef25ad67fc88ba6e1bb6083f90a67f87af3ba3edf9208" }, "downloads": -1, "filename": "pytest-dbfixtures-0.16.0.tar.gz", "has_sig": false, "md5_digest": "82262125ef6572fcf93e6ac2bb152680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21481, "upload_time": "2016-09-19T15:32:56", "url": "https://files.pythonhosted.org/packages/19/7a/d36b6619a5df7d23a7297381e05d155ae849964a9c312c898197e0fe0377/pytest-dbfixtures-0.16.0.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "336d18b86b274d55f72d7da626a79bde", "sha256": "9e621764c26ca63eb8708546f9a37bffbe30e098f3c8304d67990deea74ff8c5" }, "downloads": -1, "filename": "pytest-dbfixtures-0.17.0.tar.gz", "has_sig": false, "md5_digest": "336d18b86b274d55f72d7da626a79bde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18866, "upload_time": "2016-10-24T20:56:14", "url": "https://files.pythonhosted.org/packages/b6/8b/aafec7b4e9bee3d3ca4a0f4edea4abfd206acf116b263113ef120efb54e0/pytest-dbfixtures-0.17.0.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e6f732cb38d1ff73392e58b0ce16ddbb", "sha256": "20e5ebc786f4b7890670bfd91daad53906a9b679d7cefc2bc3d928380b15d524" }, "downloads": -1, "filename": "pytest-dbfixtures-0.2.tar.gz", "has_sig": false, "md5_digest": "e6f732cb38d1ff73392e58b0ce16ddbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3842, "upload_time": "2013-09-04T13:46:59", "url": "https://files.pythonhosted.org/packages/8a/e3/eb3fceddad9f1ca8c5325c3670af420adb77d3e5374d6ea164e28c98431c/pytest-dbfixtures-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "ea9b574ae711e16fc494d92825ab9a4c", "sha256": "5538b53aee5ded81ef3b204cf910e24e1459e24aab1b0ae0112096eb979d9292" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.tar.gz", "has_sig": false, "md5_digest": "ea9b574ae711e16fc494d92825ab9a4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3849, "upload_time": "2013-09-05T10:30:57", "url": "https://files.pythonhosted.org/packages/bc/d9/1386929e34ac6be4e2d89d62ca0221580ecfd4365d88f0fb79b4bb865623/pytest-dbfixtures-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6400183106c8061e3527a2102d12c7e6", "sha256": "d5fc9dadb923d993d30905e6c4d875f894a9a3b1210689af0062b10d10e25a16" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.1.tar.gz", "has_sig": false, "md5_digest": "6400183106c8061e3527a2102d12c7e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3846, "upload_time": "2013-09-06T06:51:34", "url": "https://files.pythonhosted.org/packages/f7/61/4fc6b59837615e3dc46455bff3c8d1a56c4895ca31d8c9700a78eb7697a7/pytest-dbfixtures-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "902d4e1aaf2422fde4def40abf4d6403", "sha256": "15988196e54b2d6297f1ac6696f3cdb237d15959286cc3c800c631910c2409ec" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.2.tar.gz", "has_sig": false, "md5_digest": "902d4e1aaf2422fde4def40abf4d6403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3919, "upload_time": "2013-09-10T09:10:17", "url": "https://files.pythonhosted.org/packages/35/98/436662aa7771eec2ea039a6dcde20145f4e0f65e2e9961594b775becb433/pytest-dbfixtures-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "821cfe72de956632f4862db3683d0f49", "sha256": "965e0ae8b8013d7daf16a69c8d9538683ed0cb5689845fad1e589628dfd906e7" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.3.tar.gz", "has_sig": false, "md5_digest": "821cfe72de956632f4862db3683d0f49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3969, "upload_time": "2013-09-10T10:02:02", "url": "https://files.pythonhosted.org/packages/33/2e/bc337b04bdc6da3043ea7abebfb31249dd00f597b5fc326573cd3c8fbc90/pytest-dbfixtures-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "39c95ae3aa8c7af0fb26947526f33591", "sha256": "51995fb3fb01582c7456570396bdf48d0ec55ca26b73c8f7ef0854c501e0f0f9" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.4.tar.gz", "has_sig": false, "md5_digest": "39c95ae3aa8c7af0fb26947526f33591", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4068, "upload_time": "2013-09-10T11:14:04", "url": "https://files.pythonhosted.org/packages/d7/fc/b08d0ec73bf7d4af662b34d56ed2f3e4d128fde82f190395531b3185ba3e/pytest-dbfixtures-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "cb977999a9c6fb42eee69e35c1bf9af0", "sha256": "011fc5fe9e4f643a569b22ebae207ef8482089042ef598da0c9aaa52f973d6f6" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.5.tar.gz", "has_sig": false, "md5_digest": "cb977999a9c6fb42eee69e35c1bf9af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4118, "upload_time": "2013-09-10T11:30:08", "url": "https://files.pythonhosted.org/packages/fe/00/ce78047f87289ff0712bf02d8e21ae25ea00a035d5e7c66fd504ec69e406/pytest-dbfixtures-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "d3e963d3f58af1469cb2ccbf1e880480", "sha256": "0b6bb0dde0aa1d794b9c5f6c522fef52309f20485d213236ef8c6ebac33fa858" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.tar.gz", "has_sig": false, "md5_digest": "d3e963d3f58af1469cb2ccbf1e880480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4124, "upload_time": "2013-09-10T11:44:37", "url": "https://files.pythonhosted.org/packages/03/1a/a00b803bc49ac460144cb48bb2650bee53d36e2b2732909bcd7b7765c873/pytest-dbfixtures-0.3.6.tar.gz" } ], "0.3.6.1": [ { "comment_text": "", "digests": { "md5": "1b50ea5b2efffe9556d64c0b5751604e", "sha256": "2b7e9ae1f7b37e7b8590812d28daaf5a7faed8ae4c4e569bc32902e85256d6cb" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.1.tar.gz", "has_sig": false, "md5_digest": "1b50ea5b2efffe9556d64c0b5751604e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4128, "upload_time": "2013-09-10T11:49:39", "url": "https://files.pythonhosted.org/packages/5b/e7/26e681a18ac10c9e646ec7ca3f4ee0b1e0be248cfb711af69e5eef63c357/pytest-dbfixtures-0.3.6.1.tar.gz" } ], "0.3.6.10": [ { "comment_text": "", "digests": { "md5": "8698250caf80339527405613e30eb41f", "sha256": "ac9f5fbc17f7c2914ab9ef93f509931aa864982fbdf592f3fad9e1b0f6f5d23f" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.10.tar.gz", "has_sig": false, "md5_digest": "8698250caf80339527405613e30eb41f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5015, "upload_time": "2013-09-12T13:33:09", "url": "https://files.pythonhosted.org/packages/14/98/215641ece03a6211496b0199c2e42155dadc96f686afb6231299199134cb/pytest-dbfixtures-0.3.6.10.tar.gz" } ], "0.3.6.12": [ { "comment_text": "", "digests": { "md5": "67be3b381e6a06c15186ead824cd3bad", "sha256": "f499ff513c3c33504b27dbcfea7ffba5c36a07ae4b27025cf2f80700631fd61f" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.12.tar.gz", "has_sig": false, "md5_digest": "67be3b381e6a06c15186ead824cd3bad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5046, "upload_time": "2013-09-16T07:28:33", "url": "https://files.pythonhosted.org/packages/9a/95/8e9da52b7d1f44f5da21b5a04f5807faa03a450ff5430d28224b3017ca2e/pytest-dbfixtures-0.3.6.12.tar.gz" } ], "0.3.6.2": [ { "comment_text": "", "digests": { "md5": "0949f1dbb240c2f20bf152db0b001332", "sha256": "f373a5ff37e0250ca67fc1d47481cd510dc27846ef91811d1af10fe0e4b7ca82" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.2.tar.gz", "has_sig": false, "md5_digest": "0949f1dbb240c2f20bf152db0b001332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4157, "upload_time": "2013-09-10T11:55:11", "url": "https://files.pythonhosted.org/packages/37/91/d62675a836a5169de5778d55e1ba74cd03f5d25976e0b60256ff0abe6515/pytest-dbfixtures-0.3.6.2.tar.gz" } ], "0.3.6.3": [ { "comment_text": "", "digests": { "md5": "d2e8554b5b1f93112f91f5d15c44e396", "sha256": "aefa48fc1f2b9d1eea6b5d5aea3adf1cda36d89f236dc128547e903375be7b38" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.3.tar.gz", "has_sig": false, "md5_digest": "d2e8554b5b1f93112f91f5d15c44e396", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4176, "upload_time": "2013-09-10T12:04:33", "url": "https://files.pythonhosted.org/packages/1e/42/6d2268410544b595dfe17f1e4d7c7982cf7dfe232695e6b8dae54f53f407/pytest-dbfixtures-0.3.6.3.tar.gz" } ], "0.3.6.4": [ { "comment_text": "", "digests": { "md5": "6eccd47853053ce6bc26bcb1e4f0b4eb", "sha256": "a7d65041f90b185757a0593cf033319f78bdfa5415c1b083797593871d6330ad" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.4.tar.gz", "has_sig": false, "md5_digest": "6eccd47853053ce6bc26bcb1e4f0b4eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4297, "upload_time": "2013-09-10T13:46:01", "url": "https://files.pythonhosted.org/packages/f5/6a/34d0a7a75b9670e64da00c25ea172ee98352b026cff4f77f9177decc7d44/pytest-dbfixtures-0.3.6.4.tar.gz" } ], "0.3.6.5": [ { "comment_text": "", "digests": { "md5": "94ea4de2963b15c047fbd8c258d5118c", "sha256": "013bddf0a470cfca6c9f4813dca59da9f5e5fb16fdb979e5a58fae5c4e44c93e" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.5.tar.gz", "has_sig": false, "md5_digest": "94ea4de2963b15c047fbd8c258d5118c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4232, "upload_time": "2013-09-10T14:18:41", "url": "https://files.pythonhosted.org/packages/29/e5/356cfe214bd8a0bcf5c35e34dfd2d047f1318a98140e3677d372d83e1693/pytest-dbfixtures-0.3.6.5.tar.gz" } ], "0.3.6.8": [ { "comment_text": "", "digests": { "md5": "7a97915aec6382d66e68ae348e14d14c", "sha256": "46563436e3b23e7d2ed60203fa1678cf8cb32056379039a3160010a3e59b3878" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.6.8.tar.gz", "has_sig": false, "md5_digest": "7a97915aec6382d66e68ae348e14d14c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5077, "upload_time": "2013-09-12T07:06:24", "url": "https://files.pythonhosted.org/packages/0d/e4/e6e48628aa21b64c87027e75028ba9fef1b84c075cfa430de6c15e9ef503/pytest-dbfixtures-0.3.6.8.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "0608b9e0e0a5843f67620d53054ee62f", "sha256": "b16a7eb7c76d90afa30a7c0eccdab302be33d0d029f311a91f1d6100ef439a14" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.tar.gz", "has_sig": false, "md5_digest": "0608b9e0e0a5843f67620d53054ee62f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5060, "upload_time": "2013-09-16T07:40:38", "url": "https://files.pythonhosted.org/packages/c0/74/9ba4d51123315471a3e57223a82d53aafaa43a7d3fd784b8b1c66d311a75/pytest-dbfixtures-0.3.8.tar.gz" } ], "0.3.8.10": [ { "comment_text": "", "digests": { "md5": "c110a9c7ab74854654f581cc05ec1c12", "sha256": "39ce39596282d2fccae95275c95a7959e9312e04acf42233136bb42874f9eef8" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.10.tar.gz", "has_sig": false, "md5_digest": "c110a9c7ab74854654f581cc05ec1c12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5309, "upload_time": "2013-12-09T09:42:55", "url": "https://files.pythonhosted.org/packages/3a/50/1a14b67bcf782b77c2dddd33e877982274125523fd073dd0977367f93f58/pytest-dbfixtures-0.3.8.10.tar.gz" } ], "0.3.8.12": [ { "comment_text": "", "digests": { "md5": "9252025e0f905ea2c28e637f7611b4de", "sha256": "c0f2c2307096a95fdee4b6e06ff11ce3e0deafcaf624267f9ed1dfbedd3ed43f" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.12.tar.gz", "has_sig": false, "md5_digest": "9252025e0f905ea2c28e637f7611b4de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5307, "upload_time": "2013-12-09T10:09:17", "url": "https://files.pythonhosted.org/packages/5f/0d/0e60e9b930b22580393d6f5853051530d952d21a953158a24a0d36f333dc/pytest-dbfixtures-0.3.8.12.tar.gz" } ], "0.3.8.14": [ { "comment_text": "", "digests": { "md5": "84b54a0e5c36e808ee8f300075f91cdc", "sha256": "6b34924b5e5771e3378ac1a3666b9c4790ab55435973ba74ada9bb829589e8de" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.14.tar.gz", "has_sig": false, "md5_digest": "84b54a0e5c36e808ee8f300075f91cdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5308, "upload_time": "2013-12-09T13:28:15", "url": "https://files.pythonhosted.org/packages/90/e6/0f150b6560b9a713973fdbbec313980323482b247ac4c2226abac0ef0ac8/pytest-dbfixtures-0.3.8.14.tar.gz" } ], "0.3.8.3": [ { "comment_text": "", "digests": { "md5": "23cab3575fc5d7a4d40b3ce475c7cbe7", "sha256": "70ac22ae63707775982d30d006e0e4bedbb6a54ed095f7cb51c97c287704452b" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.3.tar.gz", "has_sig": false, "md5_digest": "23cab3575fc5d7a4d40b3ce475c7cbe7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5160, "upload_time": "2013-09-17T12:35:16", "url": "https://files.pythonhosted.org/packages/48/20/e1bb4d5ce60bdce9d8ece9c19e88ee8aabaa8816759e0b3a552d4f4f1ad2/pytest-dbfixtures-0.3.8.3.tar.gz" } ], "0.3.8.4": [ { "comment_text": "", "digests": { "md5": "49df699f5969f33cc6c846d71ed36bd6", "sha256": "6f43c566f2491bfa27aca4c5bb55328f0070442cec6a15c6c0ea6cc34eeb7f33" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.4.tar.gz", "has_sig": false, "md5_digest": "49df699f5969f33cc6c846d71ed36bd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5168, "upload_time": "2013-11-08T10:34:34", "url": "https://files.pythonhosted.org/packages/2e/97/9dac4023bcc8e45b5f6d6a537179d8a03b2c7d76c2641e277fe1f1ee8134/pytest-dbfixtures-0.3.8.4.tar.gz" } ], "0.3.8.6": [ { "comment_text": "", "digests": { "md5": "b450d1dba9c14c9b73a86393597b0f82", "sha256": "2cc8ef0f5893fae9cb85ce5a3d07cd40eb9355a98be3b3beedc0f9965418895e" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.6.tar.gz", "has_sig": false, "md5_digest": "b450d1dba9c14c9b73a86393597b0f82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5208, "upload_time": "2013-11-12T10:22:37", "url": "https://files.pythonhosted.org/packages/7f/ff/26ec4385389331bc658ce2d2b485ad2d7e6da9f36ec7279cfbe6b699ff86/pytest-dbfixtures-0.3.8.6.tar.gz" } ], "0.3.8.8": [ { "comment_text": "", "digests": { "md5": "af5525716daa380140aa9dfedb3c87b5", "sha256": "26559dc65ad1dc404fcde479d71aa3c11fd3c1cab4fb86f22f837a8a1cb801b7" }, "downloads": -1, "filename": "pytest-dbfixtures-0.3.8.8.tar.gz", "has_sig": false, "md5_digest": "af5525716daa380140aa9dfedb3c87b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5311, "upload_time": "2013-11-12T13:18:22", "url": "https://files.pythonhosted.org/packages/ed/09/08b55863e335360139f09b314d68c5ecdec7ea50323fa1ad58286d750b93/pytest-dbfixtures-0.3.8.8.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "f4a2f66a70cec7ca9090236693f0d8f3", "sha256": "7ee795bffa328e13ef21df56a20b30f2d21a2490c899fbcb957d75133e88e3d1" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.0.tar.gz", "has_sig": false, "md5_digest": "f4a2f66a70cec7ca9090236693f0d8f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5776, "upload_time": "2013-12-10T15:27:44", "url": "https://files.pythonhosted.org/packages/f8/19/2fe8b5aeabd900a714cf6339c37248f8a26e9a6faff0028d3b13e2622e01/pytest-dbfixtures-0.4.0.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "e611fe9fcf5fc05fe62fdf2cdf210e7d", "sha256": "807e1629386fb58fb51eaa37cddf9cf721c90de69fe697d3b75704d7db0dd8b5" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.10.tar.gz", "has_sig": false, "md5_digest": "e611fe9fcf5fc05fe62fdf2cdf210e7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10481, "upload_time": "2014-04-29T11:58:53", "url": "https://files.pythonhosted.org/packages/d8/67/d65a7b21110cc6841a516fe65043fac59fce89e54b04c08e77420add78d5/pytest-dbfixtures-0.4.10.tar.gz" } ], "0.4.12": [ { "comment_text": "", "digests": { "md5": "ed2571b7963a99566235e4daccd750e6", "sha256": "9b62288630b2179b099a07a5d2941a5526fe691c662e6a487bf1739d67d663f8" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.12.tar.gz", "has_sig": false, "md5_digest": "ed2571b7963a99566235e4daccd750e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11798, "upload_time": "2014-05-05T07:42:57", "url": "https://files.pythonhosted.org/packages/e3/45/4a76fcf172096846ca055e85f7d04f3ec68dfb7e83bf36c63ebbb4f3ca3c/pytest-dbfixtures-0.4.12.tar.gz" } ], "0.4.13": [ { "comment_text": "", "digests": { "md5": "0c0b805b5624905300cba35937ad0453", "sha256": "8974f0e49c173e4b5fda4963891c13a4b912d9c035ac405d64d80d043d385a3d" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.13.tar.gz", "has_sig": false, "md5_digest": "0c0b805b5624905300cba35937ad0453", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11841, "upload_time": "2014-05-08T08:53:26", "url": "https://files.pythonhosted.org/packages/c9/be/5ad97340d892482a98ef2282d788961400bc6a4684f68993c8025f879863/pytest-dbfixtures-0.4.13.tar.gz" } ], "0.4.14": [ { "comment_text": "", "digests": { "md5": "8788c9c733000a13bdfdcc59c5df5453", "sha256": "5c04ccb7d682da55c493e76eb00496598c0eb321ab9f08113bb8b2b8a0e37d04" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.14.tar.gz", "has_sig": false, "md5_digest": "8788c9c733000a13bdfdcc59c5df5453", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11933, "upload_time": "2014-05-12T08:11:00", "url": "https://files.pythonhosted.org/packages/07/78/91ce26772930a4672af041ccab4c890f6217d497c02c9bd0163ec8d45065/pytest-dbfixtures-0.4.14.tar.gz" } ], "0.4.15": [ { "comment_text": "", "digests": { "md5": "5d89ad96cdb486a773f98cd121488df5", "sha256": "e1bb66a45899c1e3b688a24f9bf13e6730d0beaae740692d4480fe8fd80673ac" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.15.tar.gz", "has_sig": false, "md5_digest": "5d89ad96cdb486a773f98cd121488df5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12277, "upload_time": "2014-05-14T08:02:19", "url": "https://files.pythonhosted.org/packages/20/9b/19351eced62f0912ba8703ea08bf26267ef724a94a16f917e751e5336a63/pytest-dbfixtures-0.4.15.tar.gz" } ], "0.4.16": [ { "comment_text": "", "digests": { "md5": "da079e949d87041c062a5d8a0402df76", "sha256": "67edc5a3a91400a26affccf17d73cefa77941ff4373d4905a5908446edffe6e6" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.16.tar.gz", "has_sig": false, "md5_digest": "da079e949d87041c062a5d8a0402df76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12080, "upload_time": "2014-05-16T12:18:20", "url": "https://files.pythonhosted.org/packages/51/20/faae3b8c844ac306e8cd8c9dab9cd101cb7b28a9e472162bad63966e9659/pytest-dbfixtures-0.4.16.tar.gz" } ], "0.4.17": [ { "comment_text": "", "digests": { "md5": "dabd05c9024b83dcf9d55352bb57f77c", "sha256": "c22c7e8b154d9896bb4c8263743282605675aac14b017fc0713a15b91f8aafda" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.17.tar.gz", "has_sig": false, "md5_digest": "dabd05c9024b83dcf9d55352bb57f77c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12149, "upload_time": "2014-05-16T15:19:57", "url": "https://files.pythonhosted.org/packages/be/05/a9f7bef076457bbaf84ccc1839a2905161da3bd98160b829f428c6a3f7ca/pytest-dbfixtures-0.4.17.tar.gz" } ], "0.4.18": [ { "comment_text": "", "digests": { "md5": "45a0183cb1e36b365a4c974da02887db", "sha256": "caa58471e3ab9ba88c2e6213e23a6c8deec48a4397c30cb66585b447197105bc" }, "downloads": -1, "filename": "pytest_dbfixtures-0.4.18-py2-none-any.whl", "has_sig": false, "md5_digest": "45a0183cb1e36b365a4c974da02887db", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23006, "upload_time": "2014-05-26T10:04:27", "url": "https://files.pythonhosted.org/packages/5d/59/11590f0a39a87c7b88927dd98760baf72d61a8d2aa1f3a11bd0953079b3c/pytest_dbfixtures-0.4.18-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "45749c2a79572ed7c5531fadc1b389a1", "sha256": "5d36c3725f5378446e4dbbe03e191d62b2cef7181ce5d5e27ee418836c8c11af" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.18.tar.gz", "has_sig": false, "md5_digest": "45749c2a79572ed7c5531fadc1b389a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12363, "upload_time": "2014-05-26T10:00:35", "url": "https://files.pythonhosted.org/packages/a9/b6/ae1e3c1c7bc9e9cd8d0bbcd0f342c1c9247ba92ff3dff7010f79b1571174/pytest-dbfixtures-0.4.18.tar.gz" } ], "0.4.19": [ { "comment_text": "", "digests": { "md5": "2232d63c03c5c1292200f9b4599dff77", "sha256": "52afbd74b6b88b4340bf376d75d94df6afbe15bba7bb39a8d2b78af3c7a2aede" }, "downloads": -1, "filename": "pytest_dbfixtures-0.4.19-py2-none-any.whl", "has_sig": false, "md5_digest": "2232d63c03c5c1292200f9b4599dff77", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24919, "upload_time": "2014-05-30T09:09:57", "url": "https://files.pythonhosted.org/packages/0b/cd/25bd919fb10f120edcfc9a9e52fbfcc600bcebeab17e6cfb050463b56993/pytest_dbfixtures-0.4.19-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "794fb2b2a334572b42b418c49818904c", "sha256": "03572a59b211f0336d3568ade91953c7f73628448cf7c8fa551886bf8af17793" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.19.tar.gz", "has_sig": false, "md5_digest": "794fb2b2a334572b42b418c49818904c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13916, "upload_time": "2014-05-30T09:09:54", "url": "https://files.pythonhosted.org/packages/72/f3/e3c46ece07c91cbb6ff1fa4550ba34558ec14cdd747f6be10166420586f0/pytest-dbfixtures-0.4.19.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "0fda61caac632e4aef48ec0ecddb89c6", "sha256": "19d319ae5a84297e3b27cef8c16d79d2ac590ad204fb7f5979a04bc57a07e492" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.2.tar.gz", "has_sig": false, "md5_digest": "0fda61caac632e4aef48ec0ecddb89c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5878, "upload_time": "2014-01-10T12:35:41", "url": "https://files.pythonhosted.org/packages/64/ed/4023400de61914df432758c99605e4c5e2d46535e38f70c2e244131478b8/pytest-dbfixtures-0.4.2.tar.gz" } ], "0.4.20": [ { "comment_text": "", "digests": { "md5": "b8adbbd1963ee060d636c69e330085ba", "sha256": "9151f38ebfa7b8ed22f87658413589709cc9e78887cae34da2d95e9580e84318" }, "downloads": -1, "filename": "pytest_dbfixtures-0.4.20-py2-none-any.whl", "has_sig": false, "md5_digest": "b8adbbd1963ee060d636c69e330085ba", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25862, "upload_time": "2014-06-10T11:56:39", "url": "https://files.pythonhosted.org/packages/29/48/a6e933fcddc8f8447ddd84dc53a14a026237cd702cb3f4791fefd80bb10d/pytest_dbfixtures-0.4.20-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "576ec464e7b4a28719d2c4170d986001", "sha256": "c6a6ce16376b9ff5fe98309ad8d292265180416a7312a9b31b64b7d7945d231b" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.20.tar.gz", "has_sig": false, "md5_digest": "576ec464e7b4a28719d2c4170d986001", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14879, "upload_time": "2014-06-10T11:56:37", "url": "https://files.pythonhosted.org/packages/06/38/b9c252e722e67f05be907cd0e74c7b971a7f30cf78f85010de8350984c16/pytest-dbfixtures-0.4.20.tar.gz" } ], "0.4.21": [ { "comment_text": "", "digests": { "md5": "cb255c348625502264a4895613a772c5", "sha256": "e3a78fba08d29888a54b1f7b4ec1a47f4cd0871f709e414af156fc530e69a207" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.21.tar.gz", "has_sig": false, "md5_digest": "cb255c348625502264a4895613a772c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13972, "upload_time": "2014-07-30T10:07:50", "url": "https://files.pythonhosted.org/packages/e3/a7/1a4db2e10c183468a7e86a4191c4e517ac040eb3330c874cc9035089db05/pytest-dbfixtures-0.4.21.tar.gz" } ], "0.4.22": [ { "comment_text": "", "digests": { "md5": "aae7ab3d542355c7133c4ed006a628bb", "sha256": "d217c43b82c496e72694d31afc45171aebc46127625f1bcc3cf6022db4e14117" }, "downloads": -1, "filename": "pytest_dbfixtures-0.4.22-py2-none-any.whl", "has_sig": false, "md5_digest": "aae7ab3d542355c7133c4ed006a628bb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 26359, "upload_time": "2014-08-04T22:20:28", "url": "https://files.pythonhosted.org/packages/09/44/9d01ccd032e06b640eb326aaf706321297f7e4eb5b2a3b7b57d82529c7e4/pytest_dbfixtures-0.4.22-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "173c172cb5fcb4ce8a3450389edaea73", "sha256": "d9ee5df1f6a7b66a365e3c8091e5983a36c611f0a9f2c29dbcfa965f6f1b5725" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.22.tar.gz", "has_sig": false, "md5_digest": "173c172cb5fcb4ce8a3450389edaea73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15373, "upload_time": "2014-08-04T22:20:26", "url": "https://files.pythonhosted.org/packages/e8/81/6f45264a619773995845e402f758699704d8ed7eccbdc8457791c8208c1e/pytest-dbfixtures-0.4.22.tar.gz" } ], "0.4.23": [ { "comment_text": "", "digests": { "md5": "08c4381a90fac158abafe7cd27997c49", "sha256": "1ba3f1a9658ebd2863e1596882a3e652a8884092c28f74c5fb594b9142b3c0ec" }, "downloads": -1, "filename": "pytest_dbfixtures-0.4.23-py2-none-any.whl", "has_sig": false, "md5_digest": "08c4381a90fac158abafe7cd27997c49", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 26480, "upload_time": "2014-08-14T10:56:22", "url": "https://files.pythonhosted.org/packages/82/4d/e4c9d5433d40ca481ebac2477750d86dd32b01de42c4c85a93a9bda21787/pytest_dbfixtures-0.4.23-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c6a1c80e7b6c9da6e85ecc350b34705", "sha256": "df5a606902f77d5e87d1b1bdfc050075ff905744153c75a3404d48148f052805" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.23.tar.gz", "has_sig": false, "md5_digest": "2c6a1c80e7b6c9da6e85ecc350b34705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14155, "upload_time": "2014-08-14T10:56:19", "url": "https://files.pythonhosted.org/packages/01/e2/5de6a3bec92bbb5de0677d4fea41b748b4fb1580cc0180d0e1c2594c58b3/pytest-dbfixtures-0.4.23.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "94ae70486af8daa88d8f1122815f8227", "sha256": "06879f2744e877b18af467af81836eb382fa34705be5feea32f84e2032c453b4" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.3.tar.gz", "has_sig": false, "md5_digest": "94ae70486af8daa88d8f1122815f8227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5875, "upload_time": "2014-01-10T12:39:39", "url": "https://files.pythonhosted.org/packages/ba/9e/680f9583230a8bc9ef91507ff2a56123ac7005abeab1c3aca242cea23c8a/pytest-dbfixtures-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "43b72824533232c02d6ced523891a961", "sha256": "50f80a50ab25aa671ceaca5e6f5c23d9d3f0fa7dc0d0828039ec1e9ef550ae2c" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.4.tar.gz", "has_sig": false, "md5_digest": "43b72824533232c02d6ced523891a961", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8148, "upload_time": "2014-03-14T09:44:43", "url": "https://files.pythonhosted.org/packages/68/61/4eca1806d72bc44dcc660cb71e60520ae4a42c530ebe4d4b0ca85201ee31/pytest-dbfixtures-0.4.4.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "8775e9807f03664c2f1de10575cb6f73", "sha256": "86a49f2bcdf6cd4321ca9b903f7d2e23c7b0fca99a8b3e5df47218e2cd2263cc" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.6.tar.gz", "has_sig": false, "md5_digest": "8775e9807f03664c2f1de10575cb6f73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8593, "upload_time": "2014-03-18T12:09:29", "url": "https://files.pythonhosted.org/packages/f1/ad/2c36c3f901d30830f50537a752596ffcabd3c698b5cf9ed3e882f017efc6/pytest-dbfixtures-0.4.6.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "f5e39d3d2979e66db75071a5840a9d1e", "sha256": "d60cbde092915ac1549a63fc90878f06bbee280bc6cd5feba0ae8880b890675f" }, "downloads": -1, "filename": "pytest-dbfixtures-0.4.8.tar.gz", "has_sig": false, "md5_digest": "f5e39d3d2979e66db75071a5840a9d1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9744, "upload_time": "2014-04-11T10:55:17", "url": "https://files.pythonhosted.org/packages/89/a0/94b7b5f06127d0afee28a947768acc094dff9101f2b554cfd9e8dcad548a/pytest-dbfixtures-0.4.8.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "43c706ca904020f648207fb754d32a17", "sha256": "4618f8795837c1dde3a5fc261c4d638f43634105ee48d2092555bface3209b45" }, "downloads": -1, "filename": "pytest-dbfixtures-0.5.0.tar.gz", "has_sig": false, "md5_digest": "43c706ca904020f648207fb754d32a17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14120, "upload_time": "2014-08-14T11:26:14", "url": "https://files.pythonhosted.org/packages/bc/f5/07c98734af04a6509ff2644a2a783cee853d95ea84f7f0d56c2b4856ac30/pytest-dbfixtures-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "21ea2f8fde281b66a174977d651f6da3", "sha256": "443ca155e0554daea0f6cbd012530a1a72fed95c313e789c995b885b2e254531" }, "downloads": -1, "filename": "pytest_dbfixtures-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "21ea2f8fde281b66a174977d651f6da3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 26461, "upload_time": "2014-08-25T11:57:19", "url": "https://files.pythonhosted.org/packages/77/b8/88cd4f3199ababffa1fb217bf974447d1dc65d18b840af56957413d00d91/pytest_dbfixtures-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9401571ec6adb435c405753eb181010b", "sha256": "0b4ddb62938df3e285b05fb0d19661254bc2a013990c6a09950bdb7f039f3736" }, "downloads": -1, "filename": "pytest-dbfixtures-0.5.1.tar.gz", "has_sig": false, "md5_digest": "9401571ec6adb435c405753eb181010b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15475, "upload_time": "2014-08-25T11:57:17", "url": "https://files.pythonhosted.org/packages/80/6a/f79a9a85b0b5ac833981047fa3a7680b6c49944c7f13707331fa88312186/pytest-dbfixtures-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "7ed0fbdb1bd123d1aba766b3f4234953", "sha256": "1f15db3f8d040a160e4039ce1f21bb2189982bc38ba10789e854c0dab767295d" }, "downloads": -1, "filename": "pytest_dbfixtures-0.5.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7ed0fbdb1bd123d1aba766b3f4234953", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28062, "upload_time": "2014-09-14T17:46:16", "url": "https://files.pythonhosted.org/packages/af/7e/4268f507bb741a457824273a9ca6ada7756dd2528270c14ea2741bd3660a/pytest_dbfixtures-0.5.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "768138c888095f976f085bb73097cad9", "sha256": "9624865c1427c91b4367df24fcec8cc1a251e1841fb0060b7ede831d88573109" }, "downloads": -1, "filename": "pytest-dbfixtures-0.5.2.tar.gz", "has_sig": false, "md5_digest": "768138c888095f976f085bb73097cad9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16202, "upload_time": "2014-09-14T17:46:14", "url": "https://files.pythonhosted.org/packages/cb/61/227d2efef0dd92be2ebfa5ba2dcc70ae0192b6cd25f05a24b55d5abc3baf/pytest-dbfixtures-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3fecb0abc4d36c88443a4136698a7418", "sha256": "ee2723ec82893d2bcd9fe8f4656f2d20c78bd768107235b8fbd5f64e3844cb07" }, "downloads": -1, "filename": "pytest_dbfixtures-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "3fecb0abc4d36c88443a4136698a7418", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29411, "upload_time": "2014-11-06T09:22:38", "url": "https://files.pythonhosted.org/packages/f0/9a/444fcffc95f60465eb7e4dfaf378a29bf86ec085ea16c566a1f9bf11192e/pytest_dbfixtures-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50035ee42ebb2cb2cfe84945fbb0b2c7", "sha256": "489939d4cb445a9165eb6ede518237e5153d487964526255674e59fa8215a272" }, "downloads": -1, "filename": "pytest_dbfixtures-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "50035ee42ebb2cb2cfe84945fbb0b2c7", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 29402, "upload_time": "2014-11-06T09:23:12", "url": "https://files.pythonhosted.org/packages/3c/bd/1dd764b432dd853b597ac5fc28f9fa0d568f1f47dbe944feb5898f1eee3f/pytest_dbfixtures-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc8158a2140b8891f4ce1f379cf8c113", "sha256": "fef94def38f91605ec8a07f8dbeae9c7592574621373bf4c4af66d65afea253e" }, "downloads": -1, "filename": "pytest-dbfixtures-0.6.0.tar.gz", "has_sig": false, "md5_digest": "cc8158a2140b8891f4ce1f379cf8c113", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14773, "upload_time": "2014-11-06T09:22:36", "url": "https://files.pythonhosted.org/packages/a8/a2/a2d8323b691f5570e5f79fc93a65c32ec6ecb4102d8a98569cccf816af2d/pytest-dbfixtures-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "b0bb9df4ffa856a6cb2af5ac07204ae6", "sha256": "51ac62a555b27836c3e1fd43b48fe5bb5bca730a6377f6ac44d2addeb7179c88" }, "downloads": -1, "filename": "pytest_dbfixtures-0.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b0bb9df4ffa856a6cb2af5ac07204ae6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29867, "upload_time": "2014-11-17T12:52:52", "url": "https://files.pythonhosted.org/packages/7f/81/878a68e0cc742984aa7376444b058dd52e012c1f650991c8e977a32a77c2/pytest_dbfixtures-0.7.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "345d66eadbf735577fc96954484acc6e", "sha256": "a83d6b944e7f6e06eec706eefcc5138b6e0a7bac9cc3539029e4de40e2a82930" }, "downloads": -1, "filename": "pytest_dbfixtures-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "345d66eadbf735577fc96954484acc6e", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 29865, "upload_time": "2014-11-17T12:54:13", "url": "https://files.pythonhosted.org/packages/95/dd/1fe43e04252e0983f783ac4124b0dd33635a1ee2d561495aaea91fcba89b/pytest_dbfixtures-0.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37bcb41acba1b50e251d133f9383d142", "sha256": "9605f8bb2a11c4b4c9741a5f04407a330df5f06ee37b883fc0c652876b8da43b" }, "downloads": -1, "filename": "pytest-dbfixtures-0.7.0.tar.gz", "has_sig": false, "md5_digest": "37bcb41acba1b50e251d133f9383d142", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15033, "upload_time": "2014-11-17T12:52:49", "url": "https://files.pythonhosted.org/packages/74/f0/b2effe1f324439cfb2b3ea4426ea1d687e27be65ef9fd14cc2dc6d286cd1/pytest-dbfixtures-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e2b21bc8c9648063add1637869c486a4", "sha256": "ecad9d2ee003102de69af6c220d1f0d44b3f81705d4eac1b73a741052662c62d" }, "downloads": -1, "filename": "pytest_dbfixtures-0.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "e2b21bc8c9648063add1637869c486a4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31754, "upload_time": "2014-11-27T21:26:45", "url": "https://files.pythonhosted.org/packages/75/03/065915adf8b45716bd044265f4c7d2d203a3211bd9c9676ae1d717ad9b8c/pytest_dbfixtures-0.8.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08040b8f84d152f101f818dd7a4c4fd6", "sha256": "687429345b54eddfce40f0a125493640bc9803a2d0ee80a5fb7f64296db4b2c5" }, "downloads": -1, "filename": "pytest_dbfixtures-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "08040b8f84d152f101f818dd7a4c4fd6", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 31768, "upload_time": "2014-11-27T21:28:20", "url": "https://files.pythonhosted.org/packages/2b/84/412a1be3d14e1e418cc4df0f56f04ecad38faeb01b124edf165eda1f85e4/pytest_dbfixtures-0.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21473b22a13ab07c9d4d09713f0dbdf3", "sha256": "fb9fb8f461623c619a780dc3b194921319f6396cb1f576a5aedea9e80f0a6b65" }, "downloads": -1, "filename": "pytest-dbfixtures-0.8.0.tar.gz", "has_sig": false, "md5_digest": "21473b22a13ab07c9d4d09713f0dbdf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15868, "upload_time": "2014-11-27T21:26:42", "url": "https://files.pythonhosted.org/packages/cd/17/034ba99c45ba199ecfdfc7f74b5b94c3982ea83f3cb81c37056d123712f8/pytest-dbfixtures-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "56f222620d9eb8572dfffed7c0bfbdb5", "sha256": "80b287f622983a061c1613927a5150464d7c2849e075be888e1db689e7f2007d" }, "downloads": -1, "filename": "pytest_dbfixtures-0.8.1-py2-none-any.whl", "has_sig": false, "md5_digest": "56f222620d9eb8572dfffed7c0bfbdb5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31988, "upload_time": "2014-11-28T09:25:27", "url": "https://files.pythonhosted.org/packages/8e/7e/6232e8e703b2bc07687b66d97c1ff61a7cb0300bf16ff8e5b2dfa6170272/pytest_dbfixtures-0.8.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d937782619341a135b006fc1bbcf21e", "sha256": "c8d07bf094a4f04d483177c125d6960554e791145dce64c9d7600e5f3440e84f" }, "downloads": -1, "filename": "pytest_dbfixtures-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3d937782619341a135b006fc1bbcf21e", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 31983, "upload_time": "2014-11-28T09:25:35", "url": "https://files.pythonhosted.org/packages/f8/1a/51b54c63d2537c053e4e89d66a0cd27dd62ff843893bec7b1a5d421b7550/pytest_dbfixtures-0.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a79261ab29b9ef0a7c2c3fbe2422a5c6", "sha256": "ea0035b9f7c735cdc6b8fd8c2461e5d091de8bb4dff25847359e6bf51b2e24bc" }, "downloads": -1, "filename": "pytest-dbfixtures-0.8.1.tar.gz", "has_sig": false, "md5_digest": "a79261ab29b9ef0a7c2c3fbe2422a5c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16218, "upload_time": "2014-11-28T09:25:26", "url": "https://files.pythonhosted.org/packages/5e/19/aa56b7dec57a9f6403e2a218e926694d855402c9d06b820875502b440e86/pytest-dbfixtures-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "7bb2a3dfc144c07a7a95c8c92e5b7e7e", "sha256": "291ad981de4ca2fa856094ca2b6d29676468bf5c823b0e403fa47b27383b3227" }, "downloads": -1, "filename": "pytest_dbfixtures-0.8.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7bb2a3dfc144c07a7a95c8c92e5b7e7e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 33004, "upload_time": "2015-01-21T11:22:50", "url": "https://files.pythonhosted.org/packages/29/e9/c97697fed68668ec12617854398cef32ed411579ac0632c9752f89a92cf1/pytest_dbfixtures-0.8.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cd32467729b8ba5c582587b673d0e7e", "sha256": "db9a2e551c99de62f67e74d42b73f754267d2f9d6a8c4e39d82274ef0dd9edf2" }, "downloads": -1, "filename": "pytest_dbfixtures-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "0cd32467729b8ba5c582587b673d0e7e", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 32992, "upload_time": "2015-01-21T11:23:04", "url": "https://files.pythonhosted.org/packages/13/b2/83807581cdb4857a5f23ac0096df6ff1e8931b4d76bf6dc300caa9ab4c48/pytest_dbfixtures-0.8.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b1cf162ab8442be351833cf471e73d7", "sha256": "9f0f95bd0f99e3903eb781e4542ccfee63c88baa234dd1e27529cc8aca687993" }, "downloads": -1, "filename": "pytest-dbfixtures-0.8.2.tar.gz", "has_sig": false, "md5_digest": "7b1cf162ab8442be351833cf471e73d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19031, "upload_time": "2015-01-21T11:22:48", "url": "https://files.pythonhosted.org/packages/f6/e9/2245df29a6a35a3a5fa31c733408c353088c6372161bbdcfb62c7fb620b7/pytest-dbfixtures-0.8.2.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "562bc763a3481dee8a6ffb04711df3ce", "sha256": "cfcec7ddcd8c13de41bf3d506b8575a41fb62f06aca9cc1e7e0164d60ba8fe85" }, "downloads": -1, "filename": "pytest_dbfixtures-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "562bc763a3481dee8a6ffb04711df3ce", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 33607, "upload_time": "2015-02-19T21:23:20", "url": "https://files.pythonhosted.org/packages/5e/c0/85c1b7cd7730c5b791bcd75439243e356ede9ba88366f95f80fa0377b898/pytest_dbfixtures-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84ae3f33643dc7b6a3094e5ebcf6f8bd", "sha256": "0a2e33076adf705575d6ffdd45fe6a2758512b7bf2bb8c513061dc473d5e9ebe" }, "downloads": -1, "filename": "pytest-dbfixtures-0.9.0.tar.gz", "has_sig": false, "md5_digest": "84ae3f33643dc7b6a3094e5ebcf6f8bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17065, "upload_time": "2015-02-19T21:23:18", "url": "https://files.pythonhosted.org/packages/5c/7c/766b2e694b3653ed2279c8456afd7f81cf02abf300d80232e3f2fdc09bbc/pytest-dbfixtures-0.9.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "c6ec5a8a08eceec37b6f7fb5da9b10a8", "sha256": "8f69e3bd3fa007c54db4654dcc05d3ac3916a144f5b3c931d476b8aa778e1365" }, "downloads": -1, "filename": "pytest-dbfixtures-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c6ec5a8a08eceec37b6f7fb5da9b10a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8855, "upload_time": "2016-12-07T22:31:26", "url": "https://files.pythonhosted.org/packages/c3/28/8c77326bc098d9182f83ab20ba2217b7d99955174090aee35757e6d100cb/pytest-dbfixtures-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c6ec5a8a08eceec37b6f7fb5da9b10a8", "sha256": "8f69e3bd3fa007c54db4654dcc05d3ac3916a144f5b3c931d476b8aa778e1365" }, "downloads": -1, "filename": "pytest-dbfixtures-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c6ec5a8a08eceec37b6f7fb5da9b10a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8855, "upload_time": "2016-12-07T22:31:26", "url": "https://files.pythonhosted.org/packages/c3/28/8c77326bc098d9182f83ab20ba2217b7d99955174090aee35757e6d100cb/pytest-dbfixtures-1.0.0.tar.gz" } ] }