├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.cfg ├── setup.py ├── src └── testing │ ├── __init__.py │ └── postgresql.py ├── tests └── test_postgresql.py └── tox.ini /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | languages: 2 | Python: true 3 | exclude_paths: 4 | - "tests/*.py" 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | .tox/ 4 | _build/ 5 | dist/ 6 | src/*.egg-info/ 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/README.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/setup.py -------------------------------------------------------------------------------- /src/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/src/testing/__init__.py -------------------------------------------------------------------------------- /src/testing/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/src/testing/postgresql.py -------------------------------------------------------------------------------- /tests/test_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/tests/test_postgresql.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk0miya/testing.postgresql/HEAD/tox.ini --------------------------------------------------------------------------------