Skip to content

Commit

Permalink
Updating ubuntu distros to latest for running tests (#1303)
Browse files Browse the repository at this point in the history
* Installing libffi7

* Updating ubuntu distros
  • Loading branch information
manasaV3 committed Feb 8, 2024
1 parent 6cb1c01 commit 03e3a9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Runs pytest for backend code
tests:
name: Unit test with pytest
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
Expand All @@ -47,6 +47,7 @@ jobs:
- name: Install dependencies
# need npe2 here to test preview page
run: |
sudo apt install libffi7
pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dataworkflow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Runs pytest for data-workflows code
tests:
name: Unit test with pytest
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
Expand All @@ -46,6 +46,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt install libffi7
pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
Expand Down

0 comments on commit 03e3a9e

Please sign in to comment.