Skip to content

Commit

Permalink
Merge pull request #463 from opsani/disable-mypy
Browse files Browse the repository at this point in the history
Disable mypy as no linting issues are getting addressed
  • Loading branch information
linkous8 authored Oct 5, 2022
2 parents af53d05 + 57da62a commit 50d2b0e
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,39 +91,6 @@ jobs:
if: steps.cached-project.outputs.cache-hit != 'true'
run: poetry install --no-interaction

mypy:
needs:
- pre_job
- setup_build
if: needs.pre_job.outputs.should_skip != 'true'
name: Run MyPy
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@master
- uses: actions/[email protected]
id: setup-python
with:
python-version: ${{ needs.setup_build.outputs.python-version }}
architecture: x64
- name: Set up root + dependencies cache
uses: actions/cache@v2
id: cached-project
with:
path: .venv
key: ".venv-${{ runner.os }}-\
python-${{ steps.setup-python.outputs.python-version }}-\
${{ hashFiles('**/poetry.lock', 'servo/**/*.py') }}"
- name: Run mypy
run: |
source .venv/bin/activate
# NOTE: This will not fully succeed for the time being
mypy servo/
- uses: actions/upload-artifact@v2
with:
name: mypy-reports
path: artifacts/

unit:
needs:
- pre_job
Expand Down

0 comments on commit 50d2b0e

Please sign in to comment.