🚨 Add pylint skip-file directive to conf.py #89
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: Python CI | |
on: [push, workflow_dispatch] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint Code | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
pip install -U pylint | |
pylint $(git ls-files '*.py') | |
test: | |
runs-on: ubuntu-latest | |
env: | |
ROBOFLOW_API_KEY: ${{ secrets.ROBOFLOW_API_KEY }} | |
ROBOFLOW_PROJECT_ID: ${{ vars.ROBOFLOW_PROJECT_ID }} | |
WORKSPACE: ${{ vars.WORKSPACE }} | |
ROBOFLOW_PROJECT_VERSION: ${{ vars.ROBOFLOW_PROJECT_VERSION }} | |
DATASET_FORMAT: ${{ vars.DATASET_FORMAT }} | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
pip install -U pytest | |
pytest --capture=sys --disable-warnings -v | |
codecov: | |
runs-on: ubuntu-latest | |
needs: test | |
env: | |
ROBOFLOW_API_KEY: ${{ secrets.ROBOFLOW_API_KEY }} | |
ROBOFLOW_PROJECT_ID: ${{ vars.ROBOFLOW_PROJECT_ID }} | |
WORKSPACE: ${{ vars.WORKSPACE }} | |
ROBOFLOW_PROJECT_VERSION: ${{ vars.ROBOFLOW_PROJECT_VERSION }} | |
DATASET_FORMAT: ${{ vars.DATASET_FORMAT }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Run tests and collect coverage | |
run: pytest --capture=sys --cov --disable-warnings -v --cov-report=xml | |
- name: Upload coverage reports to Codecov with GitHub Action | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: ${{ github.repository }} |