Skip to content

Commit

Permalink
CI(UT): add env variables to test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
HAEKADI committed Sep 12, 2024
1 parent 1f1561c commit 2cfb42d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,19 @@ jobs:
run: |
cd app
pytest tests/unit_tests -v
env:
ELASTIC__URL: ${{secrets.ELASTIC_URL_DEV}}
ELASTIC__USER: ${{ secrets.ELASTIC_USER_DEV }}
ELASTIC__PASSWORD: ${{ secrets.ELASTIC_PASSWORD_DEV }}
ENV: ${{ secrets.ENV_DEV }}
SENTRY__DSN: ${{ secrets.DSN_SENTRY }}
METADATA__URL_CC_JSON: ${{ secrets.METADATA_URL_CC_JSON }}
APM__URL: ${{ secrets.APM__URL }}
MATOMO__ID_SITE: ${{ secrets.MATOMO__ID_SITE }}
MATOMO__TRACKING_URL: ${{ secrets.MATOMO__TRACKING_URL }}
REDIS__HOST: ${{ secrets.REDIS__HOST }}
REDIS__PORT: ${{ secrets.REDIS__PORT }}
REDIS__DATABASE: ${{ secrets.REDIS__DATABASE }}
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2cfb42d

Please sign in to comment.