From 98eca37c22bf24a39dd8a82b05dcc018b031389a Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Tue, 10 Jun 2025 14:14:28 +0530 Subject: [PATCH] update --- .github/workflows/e2e-tests.yml | 16 +++++----------- ...l-path.ps1 => verify-windows-install-path.py} | 0 2 files changed, 5 insertions(+), 11 deletions(-) rename __tests__/{verify-windows-install-path.ps1 => verify-windows-install-path.py} (100%) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 8313ac05..ba2f0135 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -121,11 +121,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Init verify script - shell: pwsh - run: Move-Item -Path ".\__tests__\verify_windows_install_path.ps1" -Destination "." - - - name: Set up Python uses: ./ with: @@ -135,9 +130,8 @@ jobs: - name: Verify Install Path shell: pwsh - run: | - Set-Location -Path $Env:GITHUB_WORKSPACE - .\verify_windows_install_path.ps1 ` - ${{ matrix.architecture }} ` - ${{ matrix.freethreaded }} ` - ${{ matrix.python-version }} \ No newline at end of file + run: python __tests__/verify-windows-install-path.py ` + -os ${{ matrix.os }} ` + -arch ${{ matrix.architecture }} ` + -freethreaded ${{ matrix.freethreaded }} ` + -python-version ${{ matrix.python-version }} \ No newline at end of file diff --git a/__tests__/verify-windows-install-path.ps1 b/__tests__/verify-windows-install-path.py similarity index 100% rename from __tests__/verify-windows-install-path.ps1 rename to __tests__/verify-windows-install-path.py