From 8f465e34af656528388df40dbd701eb23317a44f Mon Sep 17 00:00:00 2001 From: Eric O Asante Date: Fri, 8 Nov 2024 02:41:41 -0500 Subject: [PATCH] Update ms5.yaml --- .github/workflows/ms5.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ms5.yaml b/.github/workflows/ms5.yaml index 353fdac..95591ad 100644 --- a/.github/workflows/ms5.yaml +++ b/.github/workflows/ms5.yaml @@ -46,13 +46,21 @@ jobs: pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Run Api + + - name: Start Database run: | python3 Backend/database_files/initdatabase.py + + - name: Run Api + run: | python3 Backend/app.py & - name: Run Pytest run: | - pytest - + pytest Backend/ + + - name: Run pylint + run: | + pylint Backend/app.py +