Install solc without pipenv

pull/2994/head
Kieran Prasch 2022-10-30 16:59:27 +00:00
parent aeddff68ac
commit d18fa76fc2
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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__)"