-
Notifications
You must be signed in to change notification settings - Fork 685
Update ethereum/tests fixtures to v6.0.0-beta.2 + fix revealed consensus failures #1579
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b49489a
c9f03ec
8c8304d
55b2a06
189d347
067308b
2b01068
fd537be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -3,7 +3,7 @@ envlist= | |||
py{35,36}-{core,database,transactions,vm} | ||||
py{36}-{benchmark,p2p,trinity,lightchain_integration,beacon} | ||||
py{36}-rpc-blockchain | ||||
py{36}-rpc-state-{frontier,homestead,eip150,eip158,byzantium,quadratic} | ||||
py{36}-rpc-state-{frontier,homestead,eip150,eip158,byzantium,constantinople,quadratic} | ||||
veox marked this conversation as resolved.
Show resolved
Hide resolved
|
||||
py{35,36}-native-blockchain-{frontier,homestead,eip150,eip158,byzantium,constantinople,metropolis,transition} | ||||
py37-{core,trinity,trinity-integration,beacon} | ||||
py{35,36}-lint | ||||
|
@@ -32,6 +32,8 @@ commands= | |||
beacon: pytest {posargs:tests/beacon/} | ||||
# The following test seems to consume a lot of memory. Restricting to 3 processes reduces crashes | ||||
rpc-state-byzantium: pytest -n3 {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Byzantium'} | ||||
# Uncomment the next line + modify test_rpc_fixtures.py when Constantinople is included in the mainnet config | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Old comment can be deleted?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can do it in a follow-up. I don't want to do it myself in case I misread the comment. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was an oversight. It shouldn't have been there - oops. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Kinda figured, but also didn't want to hold up the release over it. |
||||
rpc-state-constantinople: pytest -n3 {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Constantinople'} | ||||
rpc-state-quadratic: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and stQuadraticComplexityTest'} | ||||
transactions: pytest {posargs:tests/json-fixtures/test_transactions.py} | ||||
vm: pytest {posargs:tests/json-fixtures/test_virtual_machine.py} | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could possibly be moved "out" of any fork-specific file.