From 20b6076a7827b296cf031cb950c7a18c81855f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20Niesiob=C4=99dzki?= Date: Thu, 19 Dec 2024 16:28:39 +0000 Subject: [PATCH] Do not merge --- .github/workflows/tests.yml | 10 +++++++--- README.md | 1 + 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ac445f7856..c9f9260597 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -71,7 +71,7 @@ jobs: terraform_version: ${{ matrix.version }} terraform_wrapper: false - - uses: opentofu/setup-opentofu@v1 + - uses: opentofu/setup-opentofu@v1.0.4 if: ${{ matrix.flavour == 'tofu' }} with: tofu_version: ${{ matrix.version }} @@ -154,7 +154,9 @@ jobs: - name: Run tests on documentation examples env: TERRAFORM: ${{ matrix.flavour }} - run: pytest -vv ${{ matrix.flavour == 'terraform' && '-n4' || '-n4' }} --tb=line --junit-xml=test-results-raw.xml -k "terraform and modules/" tests/examples + run: + echo TERRAFORM=${TERRAFORM} ; + pytest -vv ${{ matrix.flavour == 'terraform' && '-n4' || '-n4' }} --tb=line --junit-xml=test-results-raw.xml -k "terraform and modules/" tests/examples - name: Create report uses: ./.github/actions/post-fabric-tests @@ -212,7 +214,9 @@ jobs: - name: Run tests modules env: TERRAFORM: ${{ matrix.flavour }} - run: pytest -vv ${{ matrix.flavour == 'terraform' && '-n4' || '-n4' }} --tb=line --junit-xml=test-results-raw.xml tests/modules + run: | + echo TERRAFORM=${TERRAFORM} ; + pytest -vv ${{ matrix.flavour == 'terraform' && '-n4' || '-n4' }} --tb=line --junit-xml=test-results-raw.xml tests/modules - name: Create report uses: ./.github/actions/post-fabric-tests diff --git a/README.md b/README.md index aa537ca801..c7a3b05171 100644 --- a/README.md +++ b/README.md @@ -44,4 +44,5 @@ For more information and usage examples see each module's README file. The [blueprints](./blueprints/) in this repository are split into several main sections: **[networking blueprints](./blueprints/networking/)** that implement core patterns or features, **[data solutions blueprints](./blueprints/data-solutions/)** that demonstrate how to integrate data services in complete scenarios, **[cloud operations blueprints](./blueprints/cloud-operations/)** that leverage specific products to meet specific operational needs, and **[factories](./blueprints/factories/)** that implement resource factories for the repetitive creation of specific resources, and finally **[GKE](./blueprints/gke)**, **[serverless](./blueprints/serverless)**, and **[third-party solutions](./blueprints/third-party-solutions/)** design blueprints. +.