Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ciur committed Jan 18, 2025
1 parent c9f04d7 commit 1450885
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
with:
python-version: '3.13'
- name: Install required debian packages
run: sudo apt-get update && sudo apt-get install -y poppler-utils # required by pdf2image
run: sudo apt-get update && sudo apt-get install -y poppler-utils # required by pdf2image
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.8
pip install poetry==1.8.2
poetry install --with test && poetry run pytest papermerge/
env:
PAPERMERGE__DATABASE__URL: 'sqlite:///test.sqlite'
Expand Down Expand Up @@ -55,11 +55,11 @@ jobs:
with:
python-version: '3.13'
- name: Install required debian packages
run: sudo apt-get install -y poppler-utils # required by pdf2image
run: sudo apt-get update && sudo apt-get install -y poppler-utils # required by pdf2image
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.8
pip install poetry==1.8.2
poetry install --with test -E pg && poetry run pytest papermerge/
env:
PAPERMERGE__DATABASE__URL: 'postgresql://pmguser:pmgpass@localhost:5432/test_pmgdb'
Expand Down

0 comments on commit 1450885

Please sign in to comment.