Project with bootstrap files to create one python project
For now, we don't have any automation to create your project. Just copy and past to your new empty project.
Main features:
- Unit tests
- Dockerfile
- Pylint
make check parameters="<filepath>.py <Class>.<Function>"
parameters filepath init after ./tests
-
All tests
make check
-
File test
make check parameters="middleware_test.py"
-
Class of file test
make check parameters="middleware_test.py ProcessRequestTests"
-
Function of class of file test:
make check parameters="middleware_test.py ProcessRequestTests.test_get_proxy"
make check-integration parameters="<filepath>.py <Class>.<Function>"
parameters filepath init after ./tests
Same unit tests examples works to integration tests.
To run pylint in your code run:
make lint