Commit a38da182 authored by Geoffrey GREBERT's avatar Geoffrey GREBERT Committed by Pierre Smeyers
Browse files

feat: change default args to launch all hurl files from repo (use glob pattern)

parent b3128a0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ It uses the following variable:
| Input / Variable | Description                              | Default value     |
| --------------------- | ---------------------------------------- | ----------------- |
| `image` / `HURL_IMAGE` | The Docker image used to run Hurl. | `ghcr.io/orange-opensource/hurl:latest` |
| `test-files` / `HURL_TEST_FILES` | The Hurl test files to run | `hurl/*.hurl` |
| `test-files` / `HURL_TEST_FILES` | The Hurl test files to run | `--glob **/*.hurl` |
| `extra-args` / `HURL_EXTRA_ARGS` | Hurl extra [run options](https://hurl.dev/docs/manual.html#options) | _none_ |
| `review-enabled` / `REVIEW_ENABLED` | Set to `true` to enable Hurl tests on review environments (dynamic environments instantiated on development branches) | _none_ (disabled) |

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
    {
      "name": "HURL_TEST_FILES",
      "description": "The Hurl test files to run",
      "default": "hurl/*.hurl"
      "default": "--glob **/*.hurl"
    },
    {
      "name": "HURL_EXTRA_ARGS",
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ spec:
      default: ghcr.io/orange-opensource/hurl:latest
    test-files:
      description: The Hurl test files to run
      default: hurl/*.hurl
      default: --glob **/*.hurl
    extra-args:
      description: Hurl extra [run options](https://hurl.dev/docs/manual.html#options)
      default: ''