Skip to content

Commit

Permalink
adjust pip3 -> pip
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelbaker-cisa committed Jul 26, 2024
1 parent 115cbcc commit 5c98902
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run_smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ 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

- 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"

0 comments on commit 5c98902

Please sign in to comment.