From 51e5d5f48232a9d36f750bbd05065227e81123ec Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Thu, 27 Aug 2026 13:21:58 +0300 Subject: [PATCH] Install the shared Molecule requirements in CI too The previous commit moved requirements.txt into molecule-shared/ but left the workflow installing from the old per-role path, so CI failed on a file that no longer exists while the local run - which reads the shared file through bin/molecule.sh - passed. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/molecule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 034feebbf..432d072c3 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -143,7 +143,7 @@ jobs: python-version: "3.x" - name: Install test dependencies - run: python3 -m pip install -r roles/custom/${{ matrix.role }}/molecule/requirements.txt + run: python3 -m pip install -r molecule-shared/requirements.txt - name: Run Molecule working-directory: roles/custom/${{ matrix.role }}