Minor update

This commit is contained in:
Miroslav Štampar 2026-06-15 01:20:48 +02:00
parent 61d327aae1
commit 48b915b5ee
3 changed files with 5 additions and 5 deletions

View file

@ -246,7 +246,7 @@ def smokeTest():
count, length = 0, 0
for root, _, files in os.walk(paths.SQLMAP_ROOT_PATH):
if any(_ in root for _ in ("thirdparty", "extra", "interbase")):
if any(_ in root for _ in ("thirdparty", "extra", "interbase", "tests")):
continue
for filename in files:
@ -254,7 +254,7 @@ def smokeTest():
length += 1
for root, _, files in os.walk(paths.SQLMAP_ROOT_PATH):
if any(_ in root for _ in ("thirdparty", "extra", "interbase")):
if any(_ in root for _ in ("thirdparty", "extra", "interbase", "tests")):
continue
for filename in files: