Skip to content

Commit

Permalink
CI - convert pylint to soft check
Browse files Browse the repository at this point in the history
  • Loading branch information
pavoljuhas committed Oct 4, 2024
1 parent 5795ac6 commit 148fcbb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ jobs:
python -m pip install --upgrade pip
pip install pylint
- name: Pylint check
run: dev_tools/pylint
# TODO: #210 - convert to hard check when lint is picked up
run: |
dev_tools/pylint || (
echo "pylint check failed. The error is temporarily ignored."
echo "See https://github.com/quantumlib/unitary/issues/210"
)

0 comments on commit 148fcbb

Please sign in to comment.