Membrane Backend: A centralized authentication service for Single Sign-On (SSO) enabling seamless token-based email verification across multiple client applications.
MIT License
1
stars
0
forks
source link
Implement Flask In-Memory Sessions for Testing #26
To further streamline our testing processes and reduce potential filesystem interactions, we should consider utilizing Flask's in-memory sessions for our testing environment. This change will lead to faster tests and eliminate the need for filesystem-based session management during tests.
Objective
Ensure a cleaner separation between testing and production environments.
Improve testing speed by eliminating filesystem interactions related to session management.
Requirements
Modify the Flask app configuration to use in-memory sessions during tests.
Ensure that all tests relying on sessions are updated to work with the in-memory session store.
Validate that no session data is written to the filesystem during tests.
Overview
To further streamline our testing processes and reduce potential filesystem interactions, we should consider utilizing Flask's in-memory sessions for our testing environment. This change will lead to faster tests and eliminate the need for filesystem-based session management during tests. Objective
Requirements