diff options
-rw-r--r-- | .github/workflows/Test.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 93b0a4475..5ca4542c0 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -480,13 +480,10 @@ jobs: architecture: ${{ matrix.pyarch }} - name: '🐍 Install Python dependencies' - run: | - pip3 install -r testsuite/requirements.txt + run: pip3 install -r testsuite/requirements.txt - name: '🚦 Test installation of pyGHDL through pip' - run: | - pip install pyTooling pyTooling.Packaging wheel - pip install ("git+https://github.com/ghdl/ghdl.git@" + $env:GHDL_HASH) + run: pip install ("git+https://github.com/ghdl/ghdl.git@" + $env:GHDL_HASH) - name: '🚦 Test pyGHDL entrypoints' run: | |