From 5c9890248977c9f3b073a11e32c16561d7cfa773 Mon Sep 17 00:00:00 2001
From: Mitchel Baker <mitchel.baker@cisa.dhs.gov>
Date: Fri, 26 Jul 2024 01:29:01 +0000
Subject: [PATCH] adjust pip3 -> pip

---
 .github/workflows/run_smoke_test.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/run_smoke_test.yml b/.github/workflows/run_smoke_test.yml
index 4e42a132..28dba9ff 100644
--- a/.github/workflows/run_smoke_test.yml
+++ b/.github/workflows/run_smoke_test.yml
@@ -37,15 +37,15 @@ jobs:
 
       - name: Setup virtualenv
         run: |
-          pip3 install virtualenv
+          pip install virtualenv
           python -m venv .venv
           .venv\Scripts\activate
 
       - name: Install dependencies
         run: |
-          python -m pip3 install .
-          pip3 install -r requirements.txt
-          pip3 install pytest
+          python -m pip install .
+          pip install -r requirements.txt
+          pip install pytest
 
       - name: Download OPA executable
         run: python download_opa.py -v 0.60.0 -os windows
@@ -53,5 +53,5 @@ jobs:
       - name: Execute ScubaGoggles and check for correct output
         run: |
           echo "In step to execute ScubaGoggles smoke test" 
-          pip3 show scubagoggles
+          pip show scubagoggles
           pytest -s ./Testing/Functional/SmokeTests/ --subjectemail="$env:GWS_SERVICE_ACCOUNT"
\ No newline at end of file