From 9f70364b9f7f88420230265d44b9afe930c8eb1b Mon Sep 17 00:00:00 2001 From: SrikanthReddy12271 Date: Wed, 26 Jun 2024 13:19:08 +0000 Subject: [PATCH] updated the command to install dependencies --- .github/workflows/continuos-integration.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuos-integration.yaml b/.github/workflows/continuos-integration.yaml index 8d67bac..536d883 100644 --- a/.github/workflows/continuos-integration.yaml +++ b/.github/workflows/continuos-integration.yaml @@ -19,7 +19,9 @@ jobs: python-version: '3.10' - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install -r requirements.txt + pip install flake8 - name: Lint application run: | @@ -40,12 +42,13 @@ jobs: python-version: '3.10' - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install -r requirements.txt + pip install pytest - name: Run tests run: | - # Run your tests using pytest - pytest test_app.py + pytest test_app.py # Run your tests push: needs: test