From de8b3d760a37fc54645a2588b062f85963146070 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Sun, 29 Oct 2023 07:19:59 -0500 Subject: Finished tutorial. Keep developing! --- README.md | 12 ++++++++++++ tests/conftest.py | 8 +++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6963a3d..d8f3a7e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ https://flask.palletsprojects.com/en/3.0.x/tutorial +https://flask.palletsprojects.com/en/3.0.x/tutorial/next/ + ## Installation ```bash @@ -12,6 +14,16 @@ pip install -r requirements.txt flask --app flaskr run --debug ``` +## Build + +```bash +pip install build +python -m build --wheel +``` + +Deploy: https://flask.palletsprojects.com/en/3.0.x/deploying/ + + ## Learning resources * [Flask user guide](https://flask.palletsprojects.com/en/3.0.x/#user-s-guide) diff --git a/tests/conftest.py b/tests/conftest.py index 45079a9..6a2d0a6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,10 @@ -"""contains setup functions called fixtures that each test will use""" +""" contains setup functions called fixtures that each test will use + +pytest +coverage run -m pytest +coverage report +coverage html +""" import os import tempfile -- cgit v1.2.3