Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vit0r/clean-architecture-api-restplus-flask

Book sample app for try to be clean arch in python
https://github.com/vit0r/clean-architecture-api-restplus-flask

clean-architecture docker-compose flask-application flask-restplus flask-sqlalchemy pytest

Last synced: 3 days ago
JSON representation

Book sample app for try to be clean arch in python

Awesome Lists containing this project

README

        

# How to run tests

> with TOX

```shell
tox

```

> or with pytest

```shell
pytest -vv --cov app
pytest -vv --cov apis
pytest -vv --cov core
```

#### or

```shell
pytest -v
```

> Using pipenv

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