Skip to content

Commit

Permalink
ops: fix dependabot (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
kerberizer authored Nov 26, 2024
2 parents 1572166 + b29ba31 commit e71be1b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,15 @@ jobs:
HS_PASSWORD: ${{ secrets.HS_PASSWORD }}
run: |
sed -i 's|"charisma_protected"|"charisma"|' src/rcapi/config/config.yaml
poetry run pytest
if [[ '${{ github.actor }}' != 'dependabot[bot]' ]]; then
poetry run pytest
else
poetry run pytest \
--deselect tests/test_api_download.py::test_access_domain \
--deselect tests/test_api_download.py::test_download_domain \
--deselect tests/test_api_download.py::test_download_domain_h5 \
--deselect tests/test_api_hsdsdataset.py::test_get_dataset
fi
build:

Expand Down

0 comments on commit e71be1b

Please sign in to comment.