Tagged Questions
0
votes
0answers
47 views
Flask unit tests with SQLAlchemy and PostgreSQL exhausts db connections
I'm running a suite of fairly straightforward test cases using Flask, SQLAlchemy, and PostgreSQL. Using an application factory, I've defined a base unit test class like so:
class ...
0
votes
0answers
245 views
Example of showing good practice using PostgreSQL and Flask for testing
How do you set up a Flask application with SQLAlchemy for testing?
This post didn't help me because it concentrates on sqlite and advocates connecting to db per request. I believe if I were to use pg ...
0
votes
1answer
192 views
using pythons Unit-testing setUp tearDown with flask-sql-alchemy
The project is a webapp being deployed on heroku:
Here are my simple unitests in db_test_many_create.py:
import unittest
from petalapp.database.models import User, Hospital, Data, ROLE_USER
from ...
1
vote
1answer
219 views
How to properly test a Python Flask system based on SQLAlchemy Declarative
Update: Based on what I found and how I got it working, here is a template solution that works for testing the underlying SQLAlchemy systems using the Declarative extension.
import unittest
from ...