Integration Tests #2635
This file contains 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: Integration Tests | |
on: | |
push: null | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
test-e2e: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
group: [ 1, 2, 3 ] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python 3.10 | |
uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Install poetry | |
run: make poetry-download | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry install | |
- name: Run tests | |
continue-on-error: true | |
run: PYTHONPATH=$(pwd) poetry run pytest -c pyproject.toml -x --splits 3 --group ${{ matrix.group }} --cov-report=html --cov-report xml --cov=valo_api tests/e2e |