Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 9 hours 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-16T01:37:03.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T05:47:19.846Z (over 1 year ago)
- Topics: flask, flask-application, flask-sqlalchemy, python3, unit-testing, unittest
- Language: Python
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
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
```