Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/evm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,16 @@ jobs:
strategy:
fail-fast: false
matrix:
job: [evm-byzantium, evm-petersburg, evm-istanbul, evm-latest]
job:
- evm-byzantium
- evm-petersburg
- evm-istanbul
- evm-berlin
- evm-london
- evm-paris
- evm-shanghai
- evm-cancun
- evm-prague

steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion brownie/project/compiler/solidity.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python3

import logging
from typing import Any, Deque, Final
from typing import Any, Deque, Final, cast

import semantic_version
import solcast
Expand Down
21 changes: 13 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ envlist =
docs-{local,external}
py{310,311,312,313,314,314t}
{pm,evm,plugin}test
evm-{byzantium,petersburg,istanbul,latest}
evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}

[testenv]
passenv =
ETHERSCAN_TOKEN
GITHUB_TOKEN
WEB3_INFURA_PROJECT_ID
deps =
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,latest}: coverage==5.2.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,latest}: eth-retry==0.3.5
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,latest}: pytest==6.0.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,latest}: pytest-cov==2.10.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,latest}: pytest-mock==3.3.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,latest}: pytest-xdist==1.34.0
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}: coverage==5.2.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}: eth-retry==0.3.5
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}: pytest==6.0.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}: pytest-cov==2.10.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}: pytest-mock==3.3.1
py{310,311,312,313,314,314t},{pm,plugin}test,evm-{byzantium,petersburg,istanbul,berlin,london,paris,shanghai,cancun,prague}: pytest-xdist==1.34.0
py{312,313,314,314t}: setuptools==80.9.0
docs-{local,external}: sphinx
docs-{local,external}: sphinx_rtd_theme
Expand All @@ -27,7 +27,12 @@ commands =
evm-byzantium: python pytest_patched.py tests/ --evm 0.4.22,0.4.26,0.5.0,0.5.17,0.6.3,0.6.9 byzantium 0,10000 -v
evm-petersburg: python pytest_patched.py tests/ --evm 0.5.5,0.5.17,0.6.3,0.6.9 petersburg 0,10000 -v
evm-istanbul: python pytest_patched.py tests/ --evm 0.5.13,0.5.17,0.6.3,0.6.9 istanbul 0,10000 -v
evm-latest: python pytest_patched.py tests/ --evm latest byzantium,petersburg,istanbul 0,200,10000 -v
evm-berlin: python pytest_patched.py tests/ --evm 0.8.5,0.8.7,0.8.18,0.8.20,0.8.25,0.8.30,latest berlin 0,200,10000 -v
evm-london: python pytest_patched.py tests/ --evm 0.8.7,0.8.18,0.8.20,0.8.25,0.8.30,latest london 0,200,10000 -v
evm-paris: python pytest_patched.py tests/ --evm 0.8.18,0.8.20,0.8.25,0.8.30,latest paris 0,200,10000 -v
evm-shanghai: python pytest_patched.py tests/ --evm 0.8.20,0.8.25,0.8.30,latest shanghai 0,200,10000 -v
evm-cancun: python pytest_patched.py tests/ --evm 0.8.25,0.8.30,latest cancun 0,200,10000 -v
evm-prague: python pytest_patched.py tests/ --evm 0.8.30,latest prague 0,200,10000 -v
pmtest: python pytest_patched.py tests/ --target pm -v
plugintest: python pytest_patched.py tests/test/plugin --target plugin -v
docs-local: sphinx-build {posargs:-E} -b html docs dist/docs -n -q --color
Expand Down
Loading