Gábor Szabó

Results 105 comments of Gábor Szabó

@TheGuyverjoke thanks. For now I am good with the snippet provided by @mithun-dhali-cookifi

Now I paid more attention and the warning starts to appear after sending out the email to 98 people so it is somehow created by my repeated calls.

using `-d:Confess` I got the following stack trace: ``` Deep recursion on anonymous subroutine at /home/gabor/perl-5.22.0/lib/site_perl/5.22.0/Dancer2/Core/App.pm line 1177. Dancer2::Core::App::__ANON__[/home/gabor/perl-5.22.0/lib/site_perl/5.22.0/Dancer2/Core/App.pm:37](CODE(0x5962788), Dancer2::Core::App=HASH(0x3295aa0)) called at /home/gabor/perl-5.22.0/lib/site_perl/5.22.0/Dancer2/Core/App.pm line 1177 eval {...} called at /home/gabor/perl-5.22.0/lib/site_perl/5.22.0/Dancer2/Core/App.pm...

Changing the code so that I'll call `Perl::Maven->psgi_app;` only once fixed the issue. https://github.com/szabgab/Perl-Maven/commit/cec4dbe636e1282a6d7f0665635988cf808a4eb5 BTW FYI this whole warning thing appeared only in a recent upgrade. Feel free to close...

The code and the line numbers have changed since then, but here is the output on the current version of the code: using `cover --report html` ![screen shot 2018-07-09 at...

Thanks, Would you want to send a pull-request with the correction?

Thanks for the suggestions. What kind of issues does this catch for you?

I am not sure I understand why would writing tests be difficult? ``` $ cat argv.py import sys def add(): return sys.argv[1] + sys.argv[2] ``` ``` $ cat argv_test.py import...

I think as a concept one first needs to understand that the user can put values on the command line that appear as a `list` in a variable called `sys.argv`...

Thanks for the suggestion, but I think the -maxsize option would mean I don't get the report about the large file and I would like to see if I might...