Skip to content

Commit

Permalink
make consistent, up some deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pudo committed Dec 7, 2024
1 parent ab6c579 commit 607f578
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 107 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,14 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: setup.py
cache: "poetry"
- name: Install dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
pip install -U pip poetry
sudo apt-get install -y -qq libicu-dev
poetry install --with dev
pip freeze
- name: Run pytest tests
env:
YENTE_INDEX_TYPE: elasticsearch
Expand Down Expand Up @@ -65,16 +63,14 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: setup.py
cache: "poetry"
- name: Install dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
pip install -U pip setuptools wheel
pip install -U pip poetry
sudo apt-get install -y -qq libicu-dev
pip install -q -e ".[dev]"
pip freeze
poetry install --with dev
- name: Run pytest tests with opensearch backend
env:
YENTE_INDEX_TYPE: opensearch
Expand Down
Loading

0 comments on commit 607f578

Please sign in to comment.