Skip to content

Commit

Permalink
cleaning up workflow for python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
krachwal committed Nov 30, 2023
1 parent 7d6735e commit 9c86143
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/run-backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ jobs:
run-python-tests:
runs-on: ubuntu-latest
name: Python Unit Tests
working-directory: ./python-backend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- name: "Checkout repo"
uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v4
with:
python-version: '3.11'
working-directory: ./python-backend
run: |

- name: "Install dependencies"
working-directory: ./python-backend
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
Expand Down

0 comments on commit 9c86143

Please sign in to comment.