/clean-architecture-api-restplus-flask

Book sample app for try to be clean arch in python

Primary LanguagePython

How to run tests

with TOX

tox

or with pytest

pytest -vv --cov app
pytest -vv --cov apis
pytest -vv --cov core

or

pytest -v

Using pipenv

python3 -m pip install pipenv
cd project-dir
pipenv shell
pipenv lock --pre
pipenv sync