-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
fix: ContractName
import issue on eth-typing==5.0.0
#2319
base: main
Are you sure you want to change the base?
Conversation
ContractName
issue on eth-typingContractName
import issue on eth-typing==5.0.0
as an aside, hoping when this merges to main, the latest/ docs build is fixed... |
@@ -203,7 +203,7 @@ def test_uncaught_txn_err(setup_pytester, integ_project, pytester, eth_tester_pr | |||
def test_show_internal(setup_pytester, integ_project, pytester, eth_tester_provider): | |||
_ = eth_tester_provider # Ensure using EthTester for this test. | |||
setup_pytester(integ_project) | |||
result = pytester.runpytest_subprocess("--show-internal") | |||
result = pytester.runpytest_subprocess("-p", "no:pytest_ethereum", "--show-internal") |
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.
@fubuloubu this is the annoying part, have to make sure pytest_ethereum
is disabled :(
thinking
i tried disabling in the plugin but the problem happens earlier than the loading of our plugin. pytest_ethereum
loads up and fails before ape's pytest plugin does.
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.
oof, be sure to ice your cmd+v fingers
What I did
I believe the fix is just to bump to 5.0.1 so you can't use 5.0.0
How I did it
How to verify it
Checklist