From 6af0eb5c28d5003f1a2fe0a73629ef038b46901d Mon Sep 17 00:00:00 2001 From: Usman Khalid <2200617@gmail.com> Date: Tue, 2 Mar 2021 22:00:47 +0500 Subject: [PATCH] test: Ignore running tests from /common/lib/pytest_cache. --- pavelib/utils/envs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pavelib/utils/envs.py b/pavelib/utils/envs.py index c295fd43d6..34b4968040 100644 --- a/pavelib/utils/envs.py +++ b/pavelib/utils/envs.py @@ -211,7 +211,7 @@ class Env: JS_REPORT_DIR = REPORT_DIR / 'javascript' # Directories used for common/lib/tests - IGNORED_TEST_DIRS = ('__pycache__', '.cache') + IGNORED_TEST_DIRS = ('__pycache__', '.cache', '.pytest_cache') LIB_TEST_DIRS = [] for item in (REPO_ROOT / "common/lib").listdir(): dir_name = (REPO_ROOT / 'common/lib' / item)