https://github.com/the-akira/flask-testing
Small application for Unit Testing purposes
https://github.com/the-akira/flask-testing
flask flask-application flask-sqlalchemy python3 unit-testing unittest
Last synced: 4 months ago
JSON representation
Small application for Unit Testing purposes
- Host: GitHub
- URL: https://github.com/the-akira/flask-testing
- Owner: the-akira
- Created: 2020-05-01T03:57:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:39:01.000Z (about 2 years ago)
- Last Synced: 2025-01-18T18:46:09.597Z (6 months ago)
- Topics: flask, flask-application, flask-sqlalchemy, python3, unit-testing, unittest
- Language: Python
- Size: 6.84 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Testing
Small application for Unit Testing purposes
## Installation
### Clone the Repository
```
git clone https://github.com/the-akira/Flask-Testing.git
```### Inside the Main Directory
Create a Virtual Environment
```
python -m venv myvenv
```Activate the Virtual Environment
```
source myvenv/bin/activate
```Install Requirements
```
pip install -r requirements.txt
```### Inside app
Run the Application
```
python app.py
```Run the tests
```
python app.test.py
```