Starts cleaning up the code, using Flake8 and Pylint linters.
Context
It would be nice to have the test harness working, so we can integrate testing as part of our deployment flow. Right now I'm implementing that using Django's built-in framework. There's only 1 test for now, but we can improve upon it in future PRs. I'd also love to have this be part of CI so we gate merges on passing tests and linters.
Examples
You can run the test using the command ./manage.py test and it should pass.
Summary
Flake8
andPylint
linters.Context
It would be nice to have the test harness working, so we can integrate testing as part of our deployment flow. Right now I'm implementing that using Django's built-in framework. There's only 1 test for now, but we can improve upon it in future PRs. I'd also love to have this be part of CI so we gate merges on passing tests and linters.
Examples
You can run the test using the command
./manage.py test
and it should pass.