Fix GlitchTip error-reporting noise + import-smoke CI #1539
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: Python CI | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| run-ci: | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| matrix: | |
| # TODO: add windows matrix | |
| os: [macos-latest] | |
| env: | |
| REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
| BRANCH: ${{ github.event.pull_request.head.ref }} | |
| SKIP_POETRY_SHELL: 1 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ env.BRANCH }} | |
| repository: ${{ env.REPO }} | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Run tests using the shell script (macOS compatible). | |
| if: matrix.os == 'macos-latest' | |
| run: sh install/install_openadapt.sh | |
| - name: Install poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 1.5.1 | |
| virtualenvs-create: true | |
| virtualenvs-in-project: true | |
| - name: Cache deps | |
| id: cache-deps | |
| uses: actions/cache@v2 | |
| with: | |
| path: .venv | |
| key: pydeps-${{ hashFiles('**/poetry.lock') }} | |
| - run: poetry install --no-interaction --no-root | |
| if: steps.cache-deps.outputs.cache-hit != 'true' | |
| - name: Activate virtualenv | |
| run: source .venv/bin/activate | |
| if: steps.cache-deps.outputs.cache-hit == 'true' | |
| - name: Check formatting with Black | |
| run: poetry run black --preview --check . --exclude '/(alembic|\.cache|\.venv|venv|contrib|__pycache__)/' | |
| - name: Run Flake8 | |
| run: poetry run flake8 --exclude=alembic,.venv,venv,contrib,.cache,.git | |
| # Guard against import-time breakage (missing/renamed imports, bad lazy | |
| # imports) -- the class of error that dominates GlitchTip. See | |
| # GLITCHTIP_FIX_PLAN.md. TODO: extend to a Windows matrix to cover the | |
| # pywinauto import path. | |
| - name: Import-smoke (core modules must import cleanly) | |
| run: poetry run python -c "import openadapt, openadapt.config, openadapt.utils, openadapt.models, openadapt.db.db, openadapt.window, openadapt.error_reporting; print('imports ok')" |