diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-03 22:16:08 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:42:29 +0100 |
commit | e7c771c8582f882ca2276b1d864c355c41eee4de (patch) | |
tree | dcc830cdca0a2c121fd90145fa38655e80e7f817 | |
parent | aa2bf5500676b29f64ae542553f1ecd84b2dc137 (diff) | |
download | ghdl-e7c771c8582f882ca2276b1d864c355c41eee4de.tar.gz ghdl-e7c771c8582f882ca2276b1d864c355c41eee4de.tar.bz2 ghdl-e7c771c8582f882ca2276b1d864c355c41eee4de.zip |
Disable PIP version checks.
-rw-r--r-- | .github/workflows/Test.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 70b0bb8b5..03e8935de 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -101,8 +101,7 @@ jobs: run: | sudo apt update -qq sudo apt install -y gnat - python -m pip install --upgrade pip - python -m pip install black wheel pyTooling + python -m pip install --disable-pip-version-check black wheel pyTooling - name: '🚧 Update Python bindings' run: ./scripts/update_py_bindings.sh @@ -583,9 +582,8 @@ jobs: - name: '🐍 Install pyGHDL' run: | - python -m pip install --upgrade pip - python -m pip install wheel (& ls *.whl) - python -m pip install -r testsuite/requirements.txt + python -m pip install --disable-pip-version-check wheel (& ls *.whl) + python -m pip install --disable-pip-version-check -r testsuite/requirements.txt - name: '🚦 Test pyGHDL entrypoints' run: | @@ -692,7 +690,7 @@ jobs: - name: '🛠 Install package and 🐍 Python dependencies' run: | pacman --noconfirm -U artifact/mingw-w64-*-ghdl-llvm-*.zst - pip3 install -r testsuite/requirements.txt + pip3 install --disable-pip-version-check -r testsuite/requirements.txt - name: '🚦 Run tests to generate coverage report' run: PYTHONPATH=$(pwd) python3 -m pytest -rA --cov=.. --cov-config=.coveragerc testsuite/pyunit |