From cb6233ac7316e9e9ba6737eac40dc459389f7672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20Niesiob=C4=99dzki?= Date: Mon, 27 Nov 2023 21:34:34 +0000 Subject: [PATCH] Fix links --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8ef1ea9f..6ba1682a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,6 +21,7 @@ Contributors are the engine that keeps Fabric alive so if you were or are planni - [Building tests for blueprints](#building-tests-for-blueprints) - [Testing via `tfvars` and `yaml` (aka `tftest`-based tests)](#testing-via-tfvars-and-yaml-aka-tftest-based-tests) - [Generating the inventory for `tftest`-based tests](#generating-the-inventory-for-tftest-based-tests) + - [Running end-to-end tests](#running-end-to-end-tests) - [Writing tests in Python (legacy approach)](#writing-tests-in-python-legacy-approach) - [Running tests from a temporary directory](#running-tests-from-a-temporary-directory) - [Fabric tools](#fabric-tools) @@ -1083,7 +1084,7 @@ Prepare following information: * prepare a prefix (this is to provide project and other global resources name uniqueness) #### How does it work -Each test case is provided by additional environment defined in [variables.tf](../examples/variables.tf). This simplifies writing the examples as this follows the same structure as for non-end-to-end tests, and allows multiple, independent and concurrent runs of tests. +Each test case is provided by additional environment defined in [variables.tf](tests/examples/variables.tf). This simplifies writing the examples as this follows the same structure as for non-end-to-end tests, and allows multiple, independent and concurrent runs of tests. The test environment can be provisioned automatically during the test run (which takes ~2 minutes) and destroyed at the end, when of the tests (option 1 below), which is targeting automated runs in CI/CD pipeline, or can be provisioned manually (option 2 below) to reduce test time, which might be typical use case for tests run locally.