Skip to content

Commit

Permalink
update test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsziere committed Oct 24, 2024
1 parent a7d55f3 commit 3b6ffe8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
pip install flake8 pytest
if [ -f pyproject.toml ]; then pip install .; fi
- name: Set up environment variables
run: echo "APPLICATIONINSIGHTS_CONNECTION_STRING=${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING }}" >> $GITHUB_ENV
run: |
echo "APPLICATIONINSIGHTS_CONNECTION_STRING=${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING }}" >> $GITHUB_ENV
echo "COSMOS_URL=${{ secrets.COSMOS_URL }}" >> $GITHUB_ENV
echo "COSMOS_KEY=${{ secrets.COSMOS_KEY }}" >> $GITHUB_ENV
- name: Test with pytest
run: |
pytest

0 comments on commit 3b6ffe8

Please sign in to comment.