Skip to content

Better typing annotations and some updates to match TS lib #131

Better typing annotations and some updates to match TS lib

Better typing annotations and some updates to match TS lib #131

Workflow file for this run

name: Tests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
TMP_EMAIL_DIR: /tmp/tmp_email_dir
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pipx
pipx install poetry
poetry install --sync
sudo apt-get install libarchive-tools -y
- name: Start a pocketbase database instance for api testing
run: |
mkdir $TMP_EMAIL_DIR
bash ./tests/integration/pocketbase &
sleep 1
- name: Lint with ruff
run: poetry run ruff check .
- name: Test with pytest
run: |
poetry run coverage run --source=pocketbase --branch -m pytest tests/
poetry run coverage report -m
- name: Report coverage results to coveralls.io
run: |
poetry run coveralls --verbose