This is a sample Django application that has some failing tests. It's built off the example project in Writing your first Django app.
As a programming exercise do the following:
- Create a fork of this repo.
- Make a pull request that fixes the broken tests.
-
Create a new virtual environment
python -m venv sandbox-env -
Switch to the new environment
source sandbox-env/bin/activate -
Install requirements
pip install --requirement=requirements.txt -
Run tests
python manage.py test -
Run the site (user is
adminand password isasdfASDF1234)python manage.py runserver