mirror of https://github.com/nucypher/nucypher.git
Install solc without pipenv
parent
aeddff68ac
commit
d18fa76fc2
|
@ -1,4 +1,4 @@
|
||||||
name: 'contract Tests'
|
name: 'Contract Tests'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -29,8 +29,8 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install .[dev]
|
pip install .[dev]
|
||||||
|
|
||||||
- name: Install Solidity Compiler (Pipenv Entrypoint)
|
- name: Install Solidity Compiler
|
||||||
run: pipenv run install-solc
|
run: python ./scripts/installation/install_solc.py
|
||||||
|
|
||||||
- name: Run Contract tests
|
- name: Run Contract tests
|
||||||
run: pytest tests/acceptance/blockchain/contracts
|
run: pytest tests/acceptance/blockchain/contracts
|
||||||
|
|
|
@ -31,8 +31,8 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install .[dev]
|
pip install .[dev]
|
||||||
|
|
||||||
- name: Install Solidity Compiler (Pipenv Entrypoint)
|
- name: Install Solidity Compiler
|
||||||
run: pipenv run install-solc
|
run: python ./scripts/installation/install_solc.py
|
||||||
|
|
||||||
- name: Check Python Entrypoint
|
- name: Check Python Entrypoint
|
||||||
run: python -c "import nucypher; print(nucypher.__version__)"
|
run: python -c "import nucypher; print(nucypher.__version__)"
|
||||||
|
|
Loading…
Reference in New Issue