From 5685e4930c36eb28e14a5df30fea0139243d4adb Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Mon, 17 Nov 2025 02:22:16 +0200 Subject: [PATCH] test: fix for previous commit --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dca6106..f1a7343 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -63,7 +63,7 @@ jobs: - name: Get Playwright version id: playwright-version run: | - PLAYWRIGHT_VERSION=$(python3 -c "import playwright; print(playwright.__version__)") + PLAYWRIGHT_VERSION=$(python3 -c "import importlib.metadata; print(importlib.metadata.version('playwright'))") echo "version=$PLAYWRIGHT_VERSION" >> $GITHUB_OUTPUT echo "Playwright version: $PLAYWRIGHT_VERSION" @@ -89,7 +89,7 @@ jobs: - name: Get Camoufox version id: camoufox-version run: | - CAMOUFOX_VERSION=$(python3 -c "import camoufox; print(camoufox.__version__)") + CAMOUFOX_VERSION=$(python3 -c "import importlib.metadata; print(importlib.metadata.version('camoufox'))") echo "version=$CAMOUFOX_VERSION" >> $GITHUB_OUTPUT echo "Camoufox version: $CAMOUFOX_VERSION"