Update test_phase3_polish_release_identity_and_manifest.py #20
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| PIP_DISABLE_PIP_VERSION_CHECK: "1" | |
| jobs: | |
| test: | |
| name: Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: pip | |
| - name: Install test dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools wheel | |
| python -m pip install -e . pytest | |
| - name: Compile package, tests, examples, and tools | |
| run: python -m compileall -q src tests examples tools | |
| - name: Run release-critical tests | |
| run: | | |
| python -m pytest \ | |
| tests/test_export_import.py \ | |
| tests/test_api_signature.py \ | |
| tests/test_genesis_causal_mechanism_hardening.py \ | |
| tests/test_genesis_causal_mechanism_runtime_wiring_integrity.py \ | |
| tests/test_genesis_integration_public_api_unification.py \ | |
| tests/test_genesis_integration_runtime_wiring.py \ | |
| tests/release \ | |
| tests/genesis_gates \ | |
| --disable-plugin-autoload |