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
Smoketest fails with KeyError if no geth is installed #1237
Comments
Can I work on this issue? |
@Morito-Ikeda Sure! Let us know if you run into problems. |
This issue now has a funding of 0.18 ETH (75.71 USD @ $420.64/ETH) attached to it.
|
Work has been started on the 0.18 ETH (109.98 USD @ $610.98/ETH) funding by: Please work together and coordinate delivery of the issue scope. Gitcoin doesn't know enough about everyones skillsets / free time to say who should work on what, but we trust that the community is smart and well-intentioned enough to work together. As a general rule; if you start work first, youll be at the top of the above list ^^, and should have 'dibs' as long as you follow through. On the above list? Please leave a comment to let the funder (@vs77bb) and the other parties involved what you're working, with respect to this issue and your plans to resolve it. If you don't leave a comment, the funder may expire your submission at their discretion.
|
Work for 0.18 ETH (77.35 USD @ $429.72/ETH) has been submitted by: Submitters, please leave a comment to let the funder (@vs77bb) (and the other parties involved) that you've submitted you work. If you don't leave a comment, the funder may expire your submission at their discretion.
|
The issue is solved by @gcarq. I am not sure how gitcoin works from this point on. |
@vs77bb work has been submitted and issue is solved. I'm also not sure how gitcoin works from this point on. |
The funding of 0.18 ETH (109.98 USD @ $610.98/ETH) attached to this issue has been approved & issued to @gcarq.
|
@LefterisJP @gcarq Apologies for the delay, the bounty funding has been released! @LefterisJP If you are the funder, you'll have access to 'Accept Submission' immediately once a submission is made (like @gcarq did)! |
Problem Definition
If no
geth
binary is installed (or not on thePATH
) on the user's system and noRST_GETH_BINARY
env variable is definedraiden smoketest
will fail with the following exception:The reason is that
raiden/raiden/tests/utils/smoketest.py
Line 315 in 86d19e6
os.environ
as the substitution dict andDEFAULT_ETH_COMMAND
contains$RST_GETH_BINARY
which won't be set ifdistutils.spawn.find_executable()
returnsNone
.Solution
Verify that
geth
is available and if it isn't, inform the user with an actionable error message.Tasklist
The text was updated successfully, but these errors were encountered: