├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── pytest_envvars ├── __init__.py └── django_utils.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── pytest_envvars_django_test │ ├── core │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── manage.py │ └── pytest_envvars_django_test │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── templates │ │ └── core │ │ │ └── product_list.html │ │ ├── urls.py │ │ └── wsgi.py ├── test_django_application.py ├── test_django_utils.py └── test_pytest_envvars.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_envvars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/pytest_envvars/__init__.py -------------------------------------------------------------------------------- /pytest_envvars/django_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/pytest_envvars/django_utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/core/apps.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/core/models.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/core/tests.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/core/views.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/manage.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/pytest_envvars_django_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/pytest_envvars_django_test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/pytest_envvars_django_test/settings.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/pytest_envvars_django_test/templates/core/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/pytest_envvars_django_test/templates/core/product_list.html -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/pytest_envvars_django_test/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/pytest_envvars_django_test/urls.py -------------------------------------------------------------------------------- /tests/pytest_envvars_django_test/pytest_envvars_django_test/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/pytest_envvars_django_test/pytest_envvars_django_test/wsgi.py -------------------------------------------------------------------------------- /tests/test_django_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/test_django_application.py -------------------------------------------------------------------------------- /tests/test_django_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/test_django_utils.py -------------------------------------------------------------------------------- /tests/test_pytest_envvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tests/test_pytest_envvars.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelhenrique/pytest-envvars/HEAD/tox.ini --------------------------------------------------------------------------------