Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vit0r/clean-architecture-api-restplus-flask
- Owner: vit0r
- Created: 2019-07-09T23:50:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T17:40:32.000Z (over 2 years ago)
- Last Synced: 2023-08-04T21:54:09.377Z (over 1 year ago)
- Topics: clean-architecture, docker-compose, flask-application, flask-restplus, flask-sqlalchemy, pytest
- Language: Python
- Size: 59.6 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```