Skip to content

Commit 948858a

Browse files
committed
CI: temporarily disable flake8 checks
1 parent 0be79fa commit 948858a

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/security_check.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ jobs:
1919
run: |
2020
# Upgrade pip and install security/linting tools
2121
python -m pip install --upgrade pip
22-
pip install bandit detect-secrets flake8 flake8-json
22+
pip install bandit detect-secrets
23+
24+
# - name: Install dependencies
25+
# run: |
26+
# # Upgrade pip and install security/linting tools
27+
# python -m pip install --upgrade pip
28+
# pip install bandit detect-secrets flake8 flake8-json
2329

2430
- name: Run Bandit (Security Scan)
2531
# Scan the mergin folder for vulnerabilities, excluding the test directory
@@ -29,8 +35,8 @@ jobs:
2935
# Scan the plugin directory for hardcoded secrets/credentials
3036
run: detect-secrets scan ./mergin/ --all-files
3137

32-
- name: Run Flake8 (Style Check)
33-
# Style enforcement using MerginMaps standards
34-
# Ignoring E501 (line length) and W503 (operator line breaks)
35-
run: |
36-
flake8 ./mergin/ --max-line-length=120 --ignore=E501,W503 --exclude=test
38+
# - name: Run Flake8 (Style Check)
39+
# # Style enforcement using MerginMaps standards
40+
# # Ignoring E501 (line length) and W503 (operator line breaks)
41+
# run: |
42+
# flake8 ./mergin/ --max-line-length=120 --ignore=E501,W503 --exclude=test

0 commit comments

Comments
 (0)