You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cloned this repo, downloaded Eclair v0.3 jar into the /bin directory, renamed it to eclair.jar, and ran py.test -v test.py.
eclair.py fails on line 62 with:
FileNotFoundError: [Errno 2] No such file or directory: 'src/eclair/eclair-core/src/main/resources/reference.conf'
which is understandable, as lightning-integration doesn't know anything about the Eclair's source code, including its reference configuration file.
I thought I was only supposed to copy the executables into /bin... Other implementations are launched with command line arguments rather than config file. How should I launch this tool with Eclair?
The text was updated successfully, but these errors were encountered:
You need to at least clone the source, so we can extract the config file, adapt it to our needs and then start the binary. We don't ship the config in this repo since it has been rather unstable and breaking our customizations in the past, so we try to grab it from the source repo, matching the version we are about to test.
Notice also that your test-results will not point to the correct versions if you just drop the binaries in the bin/ directory.
It is supposed to be run like this:
make update clients test
That will clone all the repos, update and run the tests.
I cloned this repo, downloaded Eclair v0.3 jar into the
/bin
directory, renamed it toeclair.jar
, and ranpy.test -v test.py
.eclair.py
fails on line 62 with:which is understandable, as lightning-integration doesn't know anything about the Eclair's source code, including its reference configuration file.
I thought I was only supposed to copy the executables into
/bin
... Other implementations are launched with command line arguments rather than config file. How should I launch this tool with Eclair?The text was updated successfully, but these errors were encountered: