├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.rst ├── PULL_REQUEST_TEMPLATE.rst ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── build.yml │ ├── pr-check.yml │ ├── pre-commit.yml │ ├── pypi.yml │ ├── tests-docker.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .rstcheck.cfg ├── AUTHORS.rst ├── CHANGES.rst ├── CONTRIBUTING.rst ├── COPYING ├── COPYING.lesser ├── Pipfile ├── README.rst ├── logo.png ├── logo.svg ├── mypy.ini ├── newsfragments └── .gitignore ├── pyproject.toml ├── pytest_dynamodb ├── __init__.py ├── config.py ├── factories │ ├── __init__.py │ ├── client.py │ ├── noprocess.py │ └── process.py ├── plugin.py └── py.typed └── tests ├── __init__.py ├── conftest.py ├── docker └── test_noproc_docker.py └── test_dynamodb.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/ISSUE_TEMPLATE.rst -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/PULL_REQUEST_TEMPLATE.rst -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/tests-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/tests-docker.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.rstcheck.cfg: -------------------------------------------------------------------------------- 1 | [rstcheck] 2 | report_level = warning 3 | -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.lesser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/COPYING.lesser -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/Pipfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/README.rst -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/logo.svg -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/mypy.ini -------------------------------------------------------------------------------- /newsfragments/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/__init__.py -------------------------------------------------------------------------------- /pytest_dynamodb/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/config.py -------------------------------------------------------------------------------- /pytest_dynamodb/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/factories/__init__.py -------------------------------------------------------------------------------- /pytest_dynamodb/factories/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/factories/client.py -------------------------------------------------------------------------------- /pytest_dynamodb/factories/noprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/factories/noprocess.py -------------------------------------------------------------------------------- /pytest_dynamodb/factories/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/factories/process.py -------------------------------------------------------------------------------- /pytest_dynamodb/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/pytest_dynamodb/plugin.py -------------------------------------------------------------------------------- /pytest_dynamodb/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/docker/test_noproc_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/tests/docker/test_noproc_docker.py -------------------------------------------------------------------------------- /tests/test_dynamodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/HEAD/tests/test_dynamodb.py --------------------------------------------------------------------------------