Skip to content

Commit

Permalink
Let's see if a more recent podman helps (tests run fine locally)
Browse files Browse the repository at this point in the history
  • Loading branch information
baszoetekouw committed Mar 7, 2024
1 parent 7898e34 commit 220fde1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install recent podman
run: |
echo 'deb http://archive.ubuntu.com/ubuntu/ lunar main universe' | sudo tee /etc/apt/sources.list.d/lunar.list
sudo apt update
sudo apt -t lunar install -y podman
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y podman
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
Expand Down

0 comments on commit 220fde1

Please sign in to comment.