Skip to content

Commit

Permalink
try jq with system dep
Browse files Browse the repository at this point in the history
  • Loading branch information
lilydjwg committed Aug 8, 2024
1 parent 1ac6402 commit 6b4d79f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ jobs:
run: |
sudo apt update
sudo apt install -y libcurl4-openssl-dev
- name: Install lxml deps
- name: Install other deps
run: |
sudo apt update
sudo apt install -y libxml2-dev libxslt1-dev
sudo apt install -y libxml2-dev libxslt1-dev libjq-dev
# werkzeug is pinned for httpbin compatibility https://github.com/postmanlabs/httpbin/issues/673
- name: Install Python deps
# 3.13 failures
# httpbin: greenlet: C API
# jq: cython pyx
run: pip install -U ${{ matrix.deps }} pytest 'pytest-asyncio>=0.23' pytest-httpbin pytest-rerunfailures structlog tomli platformdirs lxml cython jq 'werkzeug<2.1' awesomeversion
run: env JQPY_USE_SYSTEM_LIBS=1 pip install -U ${{ matrix.deps }} pytest 'pytest-asyncio>=0.23' pytest-httpbin pytest-rerunfailures structlog tomli platformdirs lxml cython jq 'werkzeug<2.1' awesomeversion
- name: Decrypt keys
env:
KEY: ${{ secrets.KEY }}
Expand Down

0 comments on commit 6b4d79f

Please sign in to comment.