Skip to content

Commit 4b85034

Browse files
authored
Merge pull request #1 from john0isaac/codespace-didactic-space-fishstick-rwgwpqp499x3qj9
Codespace didactic space fishstick rwgwpqp499x3qj9
2 parents fcc6a2f + 5c7ecbe commit 4b85034

File tree

6 files changed

+232
-163
lines changed

6 files changed

+232
-163
lines changed

README.md

+18-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To run the Flask application, follow these steps:
2222
>**Note** - In Windows, the `venv` does not have a `bin` directory. Therefore, you'd use the analogous command shown below:
2323
2424
```bash
25-
source venv\Scripts\activate
25+
source .venv\Scripts\activate
2626
```
2727
2828
1. **Install the app as an editable package:**
@@ -44,12 +44,26 @@ To run the Flask application, follow these steps:
4444
python3 -m flask --app src.flaskapp run --reload
4545
```
4646
47-
### Run the tests
47+
### Development
4848
49-
1. **Inside your virtual environment, execute the following command to run the tests**
49+
1. **Inside your virtual environment, execute the following command to install the development requirements:**
5050
5151
```bash
52-
python flask_test.py
52+
pip install -r requirements-dev.txt
53+
```
54+
55+
1. **Execute the following command to install the pre commit hooks:**
56+
57+
```bash
58+
pre-commit install
59+
```
60+
61+
### Testing
62+
63+
1. **Execute the following command to run the tests**
64+
65+
```bash
66+
pytest
5367
```
5468
5569
## API Documentation
@@ -212,5 +226,3 @@ The API will return these error types when the request fails:
212226
"total_executions": 10
213227
}
214228
```
215-
216-

flask_test.py

-157
This file was deleted.

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ extend-exclude = "src/flaskapp/migrations/"
1515

1616
[tool.pytest.ini_options]
1717
addopts = "-ra --cov"
18+
testpaths = ["tests"]
1819
pythonpath = ["src"]
1920

2021
[tool.coverage.report]

tests/conftest.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import os
2+
3+
import pytest
4+
5+
from flaskapp import create_app
6+
from flaskapp.database.models import db
7+
8+
9+
@pytest.fixture(scope="session")
10+
def app_with_db():
11+
"""Session-wide test `Flask` application."""
12+
config_override = {
13+
"TESTING": True,
14+
# Allows for override of database to separate test from dev environments
15+
"SQLALCHEMY_DATABASE_URI": os.environ.get("TEST_DATABASE_URL", os.environ.get("DATABASE_FILENAME")),
16+
}
17+
app = create_app(config_override)
18+
19+
with app.app_context():
20+
engines = db.engines
21+
22+
engine_cleanup = []
23+
24+
for key, engine in engines.items():
25+
connection = engine.connect()
26+
transaction = connection.begin()
27+
engines[key] = connection
28+
engine_cleanup.append((key, engine, connection, transaction))
29+
30+
yield app
31+
32+
for key, engine, connection, transaction in engine_cleanup:
33+
try:
34+
transaction.rollback()
35+
connection.close()
36+
except Exception:
37+
connection.close()
38+
engines[key] = engine

0 commit comments

Comments
 (0)