2022-10-31 09:02:54 +01:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
name: Python tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-11-25 17:46:50 +01:00
|
|
|
- name: Install Firefox
|
|
|
|
run: sudo snap remove firefox && sudo add-apt-repository ppa:mozillateam/ppa && sudo apt install --target-release 'o=LP-PPA-mozillateam' firefox
|
2022-11-10 19:28:28 +01:00
|
|
|
- uses: browser-actions/setup-geckodriver@latest
|
2022-10-31 09:02:54 +01:00
|
|
|
- name: Install poetry
|
|
|
|
run: pipx install poetry==1.1.15
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-11-01 08:18:33 +01:00
|
|
|
python-version: '3.11'
|
2022-10-31 09:02:54 +01:00
|
|
|
cache: poetry
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
poetry install
|
|
|
|
- name: Test
|
|
|
|
run: poetry run pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
|
|
|
|
working-directory: ./src/
|