diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-12-15 23:59:27 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-12-15 23:59:27 +0100 |
commit | 90a820dc862d7bf217a1f2a36c2b460e32734b9f (patch) | |
tree | 2e42e705678015ccee40d5261a062fcd693e9568 /.github/workflows | |
parent | 9b2456883029dc641b604151f8c53f69b7a8be1c (diff) | |
download | ghdl-90a820dc862d7bf217a1f2a36c2b460e32734b9f.tar.gz ghdl-90a820dc862d7bf217a1f2a36c2b460e32734b9f.tar.bz2 ghdl-90a820dc862d7bf217a1f2a36c2b460e32734b9f.zip |
ci: remove explicitly installing pyTooling
Diffstat (limited to '.github/workflows')
-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: | |