Ludovic Demblans

Results 8 issues of Ludovic Demblans

Suppose I have a GenServer that calls a callback module implementing some behaviour. I want to test that my GenServer does the right thing when the module does not return...

Hello, Is it possible to log outgoing requets made with HTTPoison? I need some informations from github but only when I am missing some data, so I would like to...

** (BadBooleanError) expected a boolean on left-side of "and", got: :not_struct (doctor 0.21.0) lib/reporters/module_explain.ex:85: Doctor.Reporters.ModuleExplain.valid_module?/2 (doctor 0.21.0) lib/mix/tasks/doctor.explain.ex:111: Mix.Tasks.Doctor.Explain.run_default/2 (mix 1.15.7) lib/mix/task.ex:455: anonymous fn/3 in Mix.Task.run_task/5 (mix 1.15.7) lib/mix/cli.ex:92: Mix.CLI.run_task/2...

Basically I would like to see all by branches like in "Show All" except those that have `/dependabot/` in the name. So the feature would be include/exclude text fields above...

feature request

Hello, ~~I see when running the following code that input `"single` with case `"head_match"` will consume all my RAM, all my swap, and will get OOM killed.~~ ~~Same case with...

*EDIT* Sorry this seems to be fixed already. I did not check the version used by meeseeks. I'l let this open in case there was a slight difference in the...

If the function should return a delay for a _retry_, configuring `max_retries: 3` should result in 3 calls for the function only, not 4. (Actually the callback is called 2...

The formatter is transforming this: ```elixir @spec reduce_ok(Enumerable.t(), term, (term, term -> result)) :: result ``` into this: ```elixir @spec reduce_ok(Enumerable.t(), term, [->(term, term, result)]) :: result ``` Which is...