Abdul
Abdul
@rpkamp sure, its in this file src/Behat/Testwork/Exception/ExceptionPresenter.php::presentException() The relativizePaths method is called on the entire message printed out.
I've had the same issue, raised a pull request on this https://github.com/boakley/robotframework-lint/pull/93 if @boakley could accept, merge and release that be ace.
Can the maintainer please accept this PR? Its been open since 2016.. not cool to be honest.
For now overriding config with reflection - but honestly when the maintainer wakes up - please merge PR.
For now resorting to this: ``` $api = $this->getExternalContext(WebApiContext::class); $reflection = new ReflectionObject($api); $reflectionMethod = $reflection->getMethod('getClient'); $reflectionMethod->setAccessible(true); $client = $reflectionMethod->invoke($api); $reflection = new ReflectionObject($client); $reflectionProperty = $reflection->getProperty('config'); $reflectionProperty->setAccessible(true); $config =...
@aaronbauman thanks for reporting. Can you run the commands in verboae mode and dump the output here? Also what steps and commands have you executed to get this issue?
@aaronbauman its a bit late, but does the above solution work for you? The friends of behat repo does not have an official stand point (well they do which isn't...
@robertfausk thanks for your comment from awhile - it made me look at travis CI and indeed they've moved to a payment plan model since. Will fix this soon.
Hello @hubert3 This did start the build process, however i've got this issue afterwards: Any idea how to resolve this?
Turns out adding these lines at the top of the file have fixed (supressed) the issue ``` #pragma warning (push) #pragma warning (disable : 4005) ```