Regular Integration 81B0 Tests #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Regular Integration Tests | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 0 */7 * *' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install uv 0.6.6 | |
run: | | |
python -m ensurepip | |
python -m pip install --upgrade pip | |
python -m pip install uv==0.6.6 | |
- name: Install dependencies | |
shell: bash | |
run: uv sync | |
- name: Test with pytest | |
env: | |
USERNAME: ${{ secrets.PICNIC_USERNAME }} | |
PASSWORD: ${{ secrets.PICNIC_PASSWORD }} | |
COUNTRY_CODE: ${{ secrets.PICNIC_COUNTRY_CODE }} | |
run: | | |
uv run pytest -v integration_tests | |