Skip to content

Commit 8a57c38

Browse files
add script to update performance test counts easily
1 parent e81d1de commit 8a57c38

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

ruff.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ select = [
8484
"PGH",
8585
"PLC",
8686
"PLE",
87-
"PLR01", "PLR02", "PLR04", "PLR0915", "PLR1711", "PLR1704", "PLR1714", "PLR1716", "PLR172", "PLR173", "PLR2044", "PLR5", "PLR6104", "PLR6201",
87+
"PLR01", "PLR02", "PLR04", "PLR0915", "PLR1711", "PLR1704", "PLR1714", "PLR1716", "PLR172", "PLR173", "PLR2044", "PLR5", "PLR6104", "PLR6201",
8888
"PLW",
8989
"UP",
9090
"FURB",
@@ -118,6 +118,14 @@ preview = true
118118
"dojo/filters.py" = [
119119
"A003", # ruff upgrade to 0.13.3
120120
]
121+
"scripts/update_performance_test_counts.py" = [
122+
"S603", # subprocess.run without shell=True is safe for this script
123+
"S604", # subprocess.run without shell=True is safe for this script
124+
"S605", # subprocess.run without shell=True is safe for this script
125+
"S606", # subprocess.run without shell=True is safe for this script
126+
"S607", # subprocess.run without shell=True is safe for this script
127+
"T201", # print statements are fine for console output scripts
128+
]
121129

122130
[lint.flake8-boolean-trap]
123131
extend-allowed-calls = ["dojo.utils.get_system_setting"]

0 commit comments

Comments
 (0)