├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── bootstrap-and-test.sh ├── bootstrap.sh ├── bootstrap ├── bootstrapsrc.py └── makebootstrap.py ├── liveandletdie └── __init__.py ├── requirements.txt ├── run-all.sh ├── run-lettuce.sh ├── run-pytest.sh ├── run-unittest.sh ├── sample_apps ├── django │ └── example │ │ ├── example │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ ├── views.py │ │ └── wsgi.py │ │ └── manage.py ├── fastapi │ └── main.py ├── flask │ └── main.py ├── gae │ ├── app.yaml │ └── main.py └── pyramid │ └── main.py ├── setup.cfg ├── setup.py ├── test_examples ├── lettuce_example │ └── features │ │ ├── homepage.feature │ │ └── steps.py ├── pytest_example │ └── tests.py └── unittest_example │ └── tests.py ├── tests ├── __init__.py └── test_all.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap-and-test.sh: -------------------------------------------------------------------------------- 1 | sh bootstrap.sh 2 | sh run-all.sh -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /bootstrap/bootstrapsrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/bootstrap/bootstrapsrc.py -------------------------------------------------------------------------------- /bootstrap/makebootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/bootstrap/makebootstrap.py -------------------------------------------------------------------------------- /liveandletdie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/liveandletdie/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tox -------------------------------------------------------------------------------- /run-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/run-all.sh -------------------------------------------------------------------------------- /run-lettuce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/run-lettuce.sh -------------------------------------------------------------------------------- /run-pytest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/run-pytest.sh -------------------------------------------------------------------------------- /run-unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/run-unittest.sh -------------------------------------------------------------------------------- /sample_apps/django/example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_apps/django/example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/django/example/example/settings.py -------------------------------------------------------------------------------- /sample_apps/django/example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/django/example/example/urls.py -------------------------------------------------------------------------------- /sample_apps/django/example/example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/django/example/example/views.py -------------------------------------------------------------------------------- /sample_apps/django/example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/django/example/example/wsgi.py -------------------------------------------------------------------------------- /sample_apps/django/example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/django/example/manage.py -------------------------------------------------------------------------------- /sample_apps/fastapi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/fastapi/main.py -------------------------------------------------------------------------------- /sample_apps/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/flask/main.py -------------------------------------------------------------------------------- /sample_apps/gae/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/gae/app.yaml -------------------------------------------------------------------------------- /sample_apps/gae/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/gae/main.py -------------------------------------------------------------------------------- /sample_apps/pyramid/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/sample_apps/pyramid/main.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/setup.py -------------------------------------------------------------------------------- /test_examples/lettuce_example/features/homepage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/test_examples/lettuce_example/features/homepage.feature -------------------------------------------------------------------------------- /test_examples/lettuce_example/features/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/test_examples/lettuce_example/features/steps.py -------------------------------------------------------------------------------- /test_examples/pytest_example/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/test_examples/pytest_example/tests.py -------------------------------------------------------------------------------- /test_examples/unittest_example/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/test_examples/unittest_example/tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authomatic/liveandletdie/HEAD/tox.ini --------------------------------------------------------------------------------