ignore unrelated pipenv check

This commit is contained in:
James Woglom
2023-01-25 01:17:41 -05:00
parent 1f95dd99f6
commit 10fca69038
+3 -1
View File
@@ -30,8 +30,10 @@ jobs:
pipenv install --system
- name: Run pipenv check
run: |
# DDoS attacks in wheel and setuptools packages, not relevant
pipenv check \
--ignore 51499 # DDoS attack in wheel package, which is unsupported in python 3.7
--ignore 51499 \
--ignore 52495
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names