├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── TODO ├── django_test_app ├── __init__.py ├── db.sqlite ├── fixtures │ └── fixtures.yaml ├── manage.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── settings.py ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst └── introduction.rst ├── py_yaml_fixtures ├── __init__.py ├── apps.py ├── bundle.py ├── commands.py ├── factories │ ├── __init__.py │ ├── django.py │ ├── factory_interface.py │ └── sqlalchemy.py ├── fixtures_loader.py ├── flask │ ├── __init__.py │ └── cli.py ├── hooks.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── import_fixtures.py ├── types.py └── utils.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── _unchained_config.py ├── django │ ├── __init__.py │ └── test_integration.py ├── sqlalchemy │ ├── __init__.py │ ├── create │ │ └── fixtures.yml │ ├── test_sqlalchemy.py │ └── update │ │ └── fixtures.yml ├── test_utils.py └── unchained │ ├── __init__.py │ ├── conftest.py │ └── test_integration.py └── unchained_test_app ├── __init__.py ├── fixtures.yaml └── models.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/TODO -------------------------------------------------------------------------------- /django_test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_test_app/db.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_test_app/fixtures/fixtures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/django_test_app/fixtures/fixtures.yaml -------------------------------------------------------------------------------- /django_test_app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/django_test_app/manage.py -------------------------------------------------------------------------------- /django_test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/django_test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/django_test_app/models.py -------------------------------------------------------------------------------- /django_test_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/django_test_app/settings.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md 2 | -------------------------------------------------------------------------------- /py_yaml_fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/__init__.py -------------------------------------------------------------------------------- /py_yaml_fixtures/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/apps.py -------------------------------------------------------------------------------- /py_yaml_fixtures/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/bundle.py -------------------------------------------------------------------------------- /py_yaml_fixtures/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/commands.py -------------------------------------------------------------------------------- /py_yaml_fixtures/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/factories/__init__.py -------------------------------------------------------------------------------- /py_yaml_fixtures/factories/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/factories/django.py -------------------------------------------------------------------------------- /py_yaml_fixtures/factories/factory_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/factories/factory_interface.py -------------------------------------------------------------------------------- /py_yaml_fixtures/factories/sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/factories/sqlalchemy.py -------------------------------------------------------------------------------- /py_yaml_fixtures/fixtures_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/fixtures_loader.py -------------------------------------------------------------------------------- /py_yaml_fixtures/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/flask/__init__.py -------------------------------------------------------------------------------- /py_yaml_fixtures/flask/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/flask/cli.py -------------------------------------------------------------------------------- /py_yaml_fixtures/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/hooks.py -------------------------------------------------------------------------------- /py_yaml_fixtures/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/management/__init__.py -------------------------------------------------------------------------------- /py_yaml_fixtures/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py_yaml_fixtures/management/commands/import_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/management/commands/import_fixtures.py -------------------------------------------------------------------------------- /py_yaml_fixtures/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/types.py -------------------------------------------------------------------------------- /py_yaml_fixtures/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/py_yaml_fixtures/utils.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_unchained_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/_unchained_config.py -------------------------------------------------------------------------------- /tests/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/django/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/django/test_integration.py -------------------------------------------------------------------------------- /tests/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sqlalchemy/create/fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/sqlalchemy/create/fixtures.yml -------------------------------------------------------------------------------- /tests/sqlalchemy/test_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/sqlalchemy/test_sqlalchemy.py -------------------------------------------------------------------------------- /tests/sqlalchemy/update/fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/sqlalchemy/update/fixtures.yml -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/unchained/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unchained/conftest.py: -------------------------------------------------------------------------------- 1 | from flask_unchained.bundles.sqlalchemy.pytest import * 2 | -------------------------------------------------------------------------------- /tests/unchained/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/tests/unchained/test_integration.py -------------------------------------------------------------------------------- /unchained_test_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/unchained_test_app/__init__.py -------------------------------------------------------------------------------- /unchained_test_app/fixtures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/unchained_test_app/fixtures.yaml -------------------------------------------------------------------------------- /unchained_test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancappello/py-yaml-fixtures/HEAD/unchained_test_app/models.py --------------------------------------------------------------------------------