Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```