Refactor tests #656
Workflow file for this run
This file contains 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: python -m pip install -r requirements/test.txt | |
# Update output format to enable automatic inline annotations. | |
- name: Run Ruff Linter | |
run: ruff check --output-format=github | |
- name: Run Ruff Formatter | |
run: ruff format --check | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 # Fetch the latest commit to inspect its message | |
- 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 uv | |
python -m uv pip install --system -r requirements/required.txt -r requirements/test.txt | |
- name: Show installed packages | |
run: | | |
python -m pip list | |
- name: Fetch latest commit message | |
id: get_commit_message | |
run: echo "COMMIT_MESSAGE=$(git log -2 --pretty=%B)" >> $GITHUB_ENV | |
- name: Test with PyTest | |
env: | |
COMMIT_MESSAGE: ${{ env.COMMIT_MESSAGE }} | |
run: | | |
echo "COMMIT_MESSAGE: ${{ env.COMMIT_MESSAGE }}" | |
pytest -v -rsx -n 2 --cov=segmentation_models_pytorch --cov-report=xml --cov-config=pyproject.toml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: qubvel-org/segmentation_models.pytorch | |
if: matrix.os == 'macos-latest' && matrix.python-version == '3.12' | |
minimum: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
python -m pip install uv | |
python -m uv pip install --system -r requirements/minimum.old -r requirements/test.txt | |
- name: Show installed packages | |
run: | | |
python -m pip list | |
- name: Test with pytest | |
run: pytest -v -rsx -n 2 |