Update admin_service.py (#121) #159
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: Tests | |
| on: | |
| push: | |
| branches: ["master", "main"] | |
| pull_request: | |
| branches: ["master", "main"] | |
| 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", "3.13"] | |
| 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: | | |
| sudo apt-get update | |
| sudo apt-get install libarchive-tools -y | |
| python -m pip install uv | |
| uv sync | |
| - 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: uv run ruff check . | |
| - name: Test with pytest | |
| run: | | |
| uv run coverage run --source=pocketbase --branch -m pytest tests/ | |
| uv run coverage report -m | |
| - name: Report coverage results to coveralls.io | |
| run: | | |
| uv run coveralls --verbose |