Skip to content

Commit

Permalink
fix: Fix failing macos homebrew integration test (#371)
Browse files Browse the repository at this point in the history
closes #370 
updates and splits up init/scan secureli commands for homebrew mac os
integration test. The test is currently failing due to the scan command
not checking all files and expecting committed files.
  • Loading branch information
kevin-orlando authored Jan 16, 2024
1 parent 3556abb commit ddd55a3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"

- name: Install seCureLI
# Note that this is a powershell script
Expand All @@ -34,7 +34,6 @@ jobs:
secureli scan --mode all-files --yes
$LastExitCode = 0 # Force exit code to 0 to avoid failing the build since scan returns nonzero exit status
test-homebrew-macos:
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -66,8 +65,10 @@ jobs:
path: pip

- name: Init seCureLI
run: cd pip && secureli init --yes && secureli scan

run: |
cd pip
secureli init --yes
! secureli scan --mode all-files --yes
test-pypi-macos:
runs-on: macos-latest
Expand Down

0 comments on commit ddd55a3

Please sign in to comment.