diff --git a/.github/workflows/contract_tests.yml b/.github/workflows/contract_tests.yml index 0abb13f58..cddddef4f 100644 --- a/.github/workflows/contract_tests.yml +++ b/.github/workflows/contract_tests.yml @@ -1,4 +1,4 @@ -name: 'contract Tests' +name: 'Contract Tests' on: pull_request: @@ -29,8 +29,8 @@ jobs: python -m pip install --upgrade pip pip install .[dev] - - name: Install Solidity Compiler (Pipenv Entrypoint) - run: pipenv run install-solc + - name: Install Solidity Compiler + run: python ./scripts/installation/install_solc.py - name: Run Contract tests run: pytest tests/acceptance/blockchain/contracts diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index 390730212..b269f9e15 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -31,8 +31,8 @@ jobs: python -m pip install --upgrade pip pip install .[dev] - - name: Install Solidity Compiler (Pipenv Entrypoint) - run: pipenv run install-solc + - name: Install Solidity Compiler + run: python ./scripts/installation/install_solc.py - name: Check Python Entrypoint run: python -c "import nucypher; print(nucypher.__version__)"