Add configurable option to disable automatic snake_case conversion #151
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"] | |
| 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 |