feat: add mypy to the scripts/ module #1665
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
name: Push tests | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: "*" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: actions/setup-python@v3 | |
- name: Pre-commit checks | |
uses: pre-commit/[email protected] | |
- name: Install dependencies | |
run: | | |
pip install -r ./requirements-dev.txt | |
- name: Lint with mypy | |
run: | | |
mypy --install-types | |
make mypy | |
unit-tests-cli: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Python cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
pip install -r ./cellxgene_schema_cli/requirements.txt | |
pip install -r ./requirements-dev.txt | |
- name: cellxgene_schema_cli Unit tests | |
run: make unit-test | |
- name: Upload coverage results as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: ./.coverage* | |
retention-days: 3 | |
unit-tests-migration-assistant: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Python cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
pip install -r scripts/migration_assistant/requirements.txt | |
pip install -r ./requirements-dev.txt | |
- name: migration_assistant Unit tests | |
run: make migration-assistant-tests | |
- name: Upload coverage results as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: ./.coverage* | |
retention-days: 3 | |
unit-test-ontology-dry-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Python cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
pip install -r scripts/schema_bump_dry_run_ontologies/requirements.txt | |
pip install -r ./requirements-dev.txt | |
- name: Ontology Dry Run Unit Tests | |
run: make ontology-dry-run-tests | |
- name: Upload coverage results as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: ./.coverage* | |
retention-days: 3 | |
unit-test-genes-dry-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Python cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
pip install -r scripts/schema_bump_dry_run_genes/requirements.txt | |
pip install -r ./requirements-dev.txt | |
- name: Gene Dry Run Unit Tests | |
run: make gene-dry-run-tests | |
- name: Upload coverage results as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: ./.coverage* | |
retention-days: 3 | |
submit-codecoverage: | |
needs: | |
- unit-test-genes-dry-run | |
- unit-test-ontology-dry-run | |
- unit-tests-migration-assistant | |
- unit-tests-cli | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: | |
${{ github.event.pull_request.head.ref }} | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install coverage | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage | |
path: . | |
- name: coverage report | |
run: | | |
make coverage/report-xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
env_vars: OS,PYTHON | |
files: ./coverage.xml | |
flags: unittests | |
name: codecov-umbrella |