Skip to content

Commit

Permalink
updated the command to install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SrikanthReddy12271 committed Jun 26, 2024
1 parent 78764f6 commit 9f70364
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/continuos-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit 9f70364

Please sign in to comment.