You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-1
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,12 @@ This has the added benefit of updating the version of Rust used to run the tests
54
54
task smoke-test
55
55
```
56
56
57
-
As explained in [ADR: Write tests with the Gherkin syntax](./ADRs/2024-01-11-a-write-tests-in-gherkin.md), we are using Gherkin and Cucumber to run the tests. Therefore, you won't be able to filter tests using `cargo test`. To do so, add a `@testing` tag to a `Feature`, `Rule` or `Scenario` (non-exhaustive) and then use `task smoke-test -- --tags '@testing'` to run only matching `Scenario`s.
57
+
As explained in [ADR: Write tests with the Gherkin syntax](./ADRs/2024-01-11-a-write-tests-in-gherkin.md), we are using Gherkin and Cucumber to run the tests. Therefore, you won't be able to filter tests using `cargo test`. To do so, add a `@debug` tag to a `Feature`, `Rule` or `Scenario` (non-exhaustive) and then use `task smoke-test -- --tags '@debug'` to run only matching `Scenario`s.
58
+
59
+
> [!TIP]
60
+
> You will get more logs if you use `@debug`. Also, `@debug` can be used without manually
61
+
> putting it in a feature file, like so:
62
+
> `task smoke-test -- --tags '@dns-record-checks or @debug'`.
0 commit comments