Skip to content

Commit ce31bc1

Browse files
committed
pip apply std args
1 parent 757d177 commit ce31bc1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
persist-credentials: false
6969

7070
- name: Install test dependencies
71-
run: pip install '.[python-tests]'
71+
run: pip --disable-pip-version-check --no-input --no-cache-dir install '.[python-tests]'
7272

7373
- name: Run TLV constants sync test
7474
run: pytest tests/test_tlv_constants_sync.py

.github/workflows/checksrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: 'install prereqs'
3131
run: |
3232
/home/linuxbrew/.linuxbrew/bin/brew install zizmor
33-
pip install '.[ci-tests]'
33+
pip --disable-pip-version-check --no-input --no-cache-dir install '.[ci-tests]'
3434
3535
- name: 'zizmor GHA'
3636
env:

.github/workflows/pages-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: |
29-
pip install '.[browser-tests]'
29+
pip --disable-pip-version-check --no-input --no-cache-dir install '.[browser-tests]'
3030
python -m playwright install
3131
3232
- name: Install Playwright system dependencies

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Install dependencies
25-
run: pip install '.[page-gen]'
25+
run: pip --disable-pip-version-check --no-input --no-cache-dir install '.[page-gen]'
2626

2727
- name: Generate decoder HTML
2828
run: python -m curl_fuzzer_tools.generate_decoder_html

0 commit comments

Comments
 (0)