From c2bbe8c8caaf4fcda4e88417147acdd868d56ada Mon Sep 17 00:00:00 2001 From: Jacob Bednarz Date: Mon, 27 Nov 2023 07:59:49 +1100 Subject: [PATCH] update test examples --- contributing/development.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contributing/development.md b/contributing/development.md index 810d73d691..41995b19a3 100644 --- a/contributing/development.md +++ b/contributing/development.md @@ -31,9 +31,13 @@ $ make testacc To run a subset of the acceptance test suite, you can run ```sh +# SDKv2 example TESTARGS='-run "^" -count 1 -parallel 1' make testacc -# Example TESTARGS='-run "^TestAccTestPagesProject" -count 1 -parallel 1' make testacc + +# Framework example +TEST=./internal/framework/service/rulesets TESTARGS='-run "^" -count 1' make testacc +TEST=./internal/framework/service/rulesets TESTARGS='-run "^TestAccCloudflareRuleset_" -count 1' make testacc ``` You can also install other optional (but great to have tools) using `make tools`.