Skip to content

Commit

Permalink
ci: ignore pylint and pyflakes checks
Browse files Browse the repository at this point in the history
This can happen when there are too many files to be tested, due to a bug

Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>
  • Loading branch information
psafont committed Apr 22, 2024
1 parent 45ca375 commit 4661655
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/main.yml
Expand Up @@ -98,6 +98,7 @@ jobs:
level: warning
# To be customized to cover remaining Python scripts:
glob_pattern: "**/*.py"
continue-on-error: true

- name: Run pytype checks
if: ${{ matrix.python-version != '2.7' }}
Expand All @@ -107,6 +108,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYTYPE_REPORTER_DEBUG: True

- name: pyflakes
uses: reviewdog/action-pyflakes@v1
with:
github_token: ${{ secrets.github_token }}
continue-on-error: true


ocaml-tests:
name: Run OCaml tests
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -162,13 +170,6 @@ jobs:
- name: quality-gate
run: make quality-gate

- name: pyflakes
uses: reviewdog/action-pyflakes@master
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
level: error

test-sdk-builds:
name: Test SDK builds
uses: ./.github/workflows/generate-and-build-sdks.yml
Expand Down

0 comments on commit 4661655

Please sign in to comment.