From eb45af9177d62004f1443f5fd29560317b086cf2 Mon Sep 17 00:00:00 2001 From: Mitchel Baker Date: Fri, 26 Jul 2024 00:38:06 +0000 Subject: [PATCH] adjust smoke_test workflow --- .github/workflows/run_smoke_test.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run_smoke_test.yml b/.github/workflows/run_smoke_test.yml index 9debfcb4..34330243 100644 --- a/.github/workflows/run_smoke_test.yml +++ b/.github/workflows/run_smoke_test.yml @@ -26,10 +26,14 @@ jobs: SCUBA_GITHUB_AUTOMATION_CREDS: ${{ secrets.SCUBA_GITHUB_AUTOMATION_CREDS }} GWS_SERVICE_ACCOUNT: ${{ secrets.GWS_SERVICE_ACCOUNT }} steps: + - name: Checkout Repository uses: actions/checkout@v4 + + - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: "3.12" + cache: "pip" - name: Install pytest run: pip3 install pytest @@ -56,10 +60,4 @@ jobs: echo "In step to execute ScubaGoggles smoke test" .venv\Scripts\activate scubagoggles gws - pytest -s ./Testing/Functional/SmokeTests/ --subjectemail="$env:GWS_SERVICE_ACCOUNT" - - - name: Cache dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} \ No newline at end of file + pytest -s ./Testing/Functional/SmokeTests/ --subjectemail="$env:GWS_SERVICE_ACCOUNT" \ No newline at end of file