Merge pull request #19876 from edx/youngstrom/run-unittests-on-linters

Add path to linter unittests to testing environment
This commit is contained in:
Michael Youngstrom
2019-02-26 11:00:13 -05:00
committed by GitHub
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'