Thierry Henrio

Results 4 comments of Thierry Henrio

Thank you The output without wrong should be ``` 2 tests, 2 assertions, 1 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications ``` You can obtain it with replacing...

Hi there, I noticed that retry does not run the `request_steps`. In https://github.com/wojtekmach/req/blob/main/test/req/steps_test.exs#L1587, the `params` step is not run on retry. So when I do something like ``` r =...

Hi @wojtekmach, I noticed that `Req.Request.run_request/1` "consumes" the `current_request_steps`: https://github.com/wojtekmach/req/blob/7616d399914eb28377d9fa7fdb0b0a0273e181cb/lib/req/request.ex#L979. Then we don't run `base_url` or `params` twice on `retry`, such as in https://github.com/wojtekmach/req/blob/7616d399914eb28377d9fa7fdb0b0a0273e181cb/test/req/steps_test.exs#L1587. In fact, `retry` does not run...