Add linters path to unittests

This commit is contained in:
Michael Youngstrom
2019-02-25 13:21:21 -05:00
parent 0b1c37746b
commit 4ca4030c3f
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ source =
lms
openedx
pavelib
scripts
omit =
cms/envs/*

View File

@@ -221,6 +221,7 @@ class Env(object):
if dir_name.isdir() and not dir_name.endswith(IGNORED_TEST_DIRS):
LIB_TEST_DIRS.append(path("common/lib") / item.basename())
LIB_TEST_DIRS.append(path("pavelib/paver_tests"))
LIB_TEST_DIRS.append(path("scripts/xsslint/tests"))
# Directory for i18n test reports
I18N_REPORT_DIR = REPORT_DIR / 'i18n'