Tests: Pytest, Unittest
Lint: Black
git clone git@github.com:fandredev/django-recipes.gitpython -m venv venvpython3 -m venv venvsource venv/bin/activatepip install -r requirements.txtpython manage.py migratepython manage.py createsuperusercp .env.example .envpython manage.py runserverOpen browser and put http://127.0.0.1:8000/ in URL browser.
In another tab, open browser and put http://127.0.0.1:8000/admin in URL browser. Log in with your superuser
python manage.py testpytestpytest -m 'functional'coverage run -m pytestcoverage htmlAfter that, open the htmlcov folder and look for the index.html file. Open it in your browser and the project coverage will be there
If you have any feedback, please let us know via profissionalf.andre@gmail.com
