Jean-Christophe Amiel

Results 360 comments of Jean-Christophe Amiel

Hi, Have you installed `clang` dependency on your Arch Linux (`$ pacman -S clang`)?

Read and write access could also be merged with one option `--allow-path`

Also https://github.com/Orange-OpenSource/hurl/pull/2462#issuecomment-1969673244

Hi @Thomasdezeeuw With `--test`, there is currently no explicit way of disabling progress bar. As a workaround, you can either pipe Hurl's stderr to a file (that will disable progress...

I also find a REPL very attractive (maybe better at our current [`--interactive`](https://hurl.dev/docs/manual.html#interactive) option which I doubt is used a lot). The thing that I'm a little worried is that...

Hi @iredmail Could you use [skip option](https://hurl.dev/docs/entry.html#control-flow) on some requests (by inverting some logic)?

Hi @marcodpt We can implement a `toBool` filter (should we decide how we compute "trusly" and "falsy"), but I wondering if we shouldn't try to use existing notion of [predicates](https://hurl.dev/docs/asserting-response.html#predicates)...

Hi @nopeNoshishi thanks for your issue, we'll try to improve the documentation!

Hi, we're going to add support for `HURL_SECRET_key=value`. @lambrospetrou we would like to deprecated variable injection `HURL_myvariable=value` and change it to `HURL_VARIABLE_myvariable=value` (i.e change the prefix from `HURL_` to `HURL_VARIABLE_`)....

You can also work with `cookie` query: ``` GET http://localhost:8000/cookies/set HTTP 200 # Explicit check of Set-Cookie header value. If the attributes are # not in this exact order, this...