Skip to content

Commit

Permalink
venv activation
Browse files Browse the repository at this point in the history
  • Loading branch information
rlxdev committed Jan 15, 2025
1 parent 6cabd55 commit 097e1ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/actions/setup-dependencies-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ runs:
- name: Install dependencies
shell: powershell
run: |
.venv\Scripts\activate.ps1
python -m pip install .
pip install -r requirements.txt
pip install pytest
Expand All @@ -31,5 +32,6 @@ runs:
- name: Download OPA executable
shell: powershell
run: |
.venv\Scripts\activate.ps1
scubagoggles setup -m -nc -nd -d ~/scubagoggles -r ~/scubagoggles -c credentials.json
scubagoggles getopa -v ${{ inputs.opa-version }}
5 changes: 4 additions & 1 deletion .github/workflows/run_smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,7 @@ jobs:
run: pwd

- name: Run ScubaGoggles and check for correct output
run: pytest ./scubagoggles/Testing/Functional/SmokeTests/ -vvv --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --customerdomain="${{ secrets.GWS_DOMAIN }}"
shell: powershell
run: |
.venv\Scripts\activate.ps1
pytest ./scubagoggles/Testing/Functional/SmokeTests/ -vvv --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --customerdomain="${{ secrets.GWS_DOMAIN }}"

0 comments on commit 097e1ec

Please sign in to comment.