├── .github └── workflows │ └── tests.yml ├── .gitignore ├── HISTORY.txt ├── LICENSE ├── MANIFEST.in ├── README.rst ├── override_storage ├── __init__.py ├── __version__.py ├── runner.py ├── storage.py └── utils.py ├── requirements.txt ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── context.py ├── models.py ├── test.py └── test_settings.py └── tox.ini /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/HISTORY.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/README.rst -------------------------------------------------------------------------------- /override_storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/override_storage/__init__.py -------------------------------------------------------------------------------- /override_storage/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/override_storage/__version__.py -------------------------------------------------------------------------------- /override_storage/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/override_storage/runner.py -------------------------------------------------------------------------------- /override_storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/override_storage/storage.py -------------------------------------------------------------------------------- /override_storage/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/override_storage/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | mock;python_version<"3.6" 3 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danifus/django-override-storage/HEAD/tox.ini --------------------------------------------------------------------------------