mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
tests: fix unintended redirection
This commit is contained in:
parent
bd72ea04d2
commit
d3bf5b2db5
1 changed files with 4 additions and 1 deletions
5
.github/workflows/tests.yaml
vendored
5
.github/workflows/tests.yaml
vendored
|
@ -50,7 +50,10 @@ jobs:
|
||||||
sudo apt install -y libcurl4-openssl-dev
|
sudo apt install -y libcurl4-openssl-dev
|
||||||
# werkzeug is pinned for httpbin compatibility https://github.com/postmanlabs/httpbin/issues/673
|
# werkzeug is pinned for httpbin compatibility https://github.com/postmanlabs/httpbin/issues/673
|
||||||
- name: Install Python deps
|
- name: Install Python deps
|
||||||
run: pip install -U ${{ matrix.deps }} pytest 'pytest-asyncio>=0.24' pytest-httpbin pytest-rerunfailures structlog tomli platformdirs lxml jq 'werkzeug<2.1' awesomeversion
|
env:
|
||||||
|
# use env to avoid `>` being redirection
|
||||||
|
deps: ${{ matrix.deps }}
|
||||||
|
run: pip install -U $deps pytest 'pytest-asyncio>=0.24' pytest-httpbin pytest-rerunfailures structlog tomli platformdirs lxml jq 'werkzeug<2.1' awesomeversion
|
||||||
# don't use binary distribution because:
|
# don't use binary distribution because:
|
||||||
# hardcoded cacert path doesn't work on Ubuntu (should have been resolved?)
|
# hardcoded cacert path doesn't work on Ubuntu (should have been resolved?)
|
||||||
# limited compression support (only deflate & gzip)
|
# limited compression support (only deflate & gzip)
|
||||||
|
|
Loading…
Add table
Reference in a new issue