Refactor model assets structure, for rfdetr 1.4.3+
#37
Workflow file for this run
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: Pytest/Test Workflow | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| env: | |
| UV_TORCH_BACKEND: "cpu" | |
| concurrency: | |
| group: pytest-test-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| build-pkg: | |
| uses: ./.github/workflows/build-package.yml | |
| run-tests: | |
| name: Pytest Run | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| include: | |
| - { os: "windows-latest", python-version: "3.10" } | |
| - { os: "macos-latest", python-version: "3.10" } | |
| - { os: "windows-latest", python-version: "3.13" } | |
| - { os: "macos-latest", python-version: "3.13" } | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v6 | |
| - name: Install uv and set Python version ${{ matrix.python-version }} | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| activate-environment: true | |
| - name: Install Packages | |
| run: uv pip install -e . --group tests | |
| - name: Run the Test | |
| run: uv run pytest -m "not gpu" --cov=rfdetr_plus --cov-report=xml | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: "coverage.xml" | |
| flags: cpu,${{ runner.os }},py${{ matrix.python-version }} | |
| env_vars: OS,PYTHON | |
| name: codecov-umbrella | |
| fail_ci_if_error: false | |
| - name: Minimize uv cache | |
| run: uv cache prune --ci | |
| testing-guardian: | |
| runs-on: ubuntu-latest | |
| needs: run-tests | |
| if: always() | |
| steps: | |
| - name: Display test result | |
| run: echo "${{ needs.run-tests.result }}" | |
| - name: Fail guardian on test failure | |
| if: needs.run-tests.result == 'failure' | |
| run: exit 1 | |
| - name: Cancelled or skipped | |
| if: contains(fromJSON('["cancelled", "skipped"]'), needs.run-tests.result) | |
| run: | | |
| echo "run-tests job result is '${{ needs.run-tests.result }}'; failing explicitly." | |
| exit 1 | |
| - name: Tests succeeded | |
| if: needs.run-tests.result == 'success' | |
| run: echo "All tests completed successfully in job 'run-tests'." |