From ac1048e5d9e33990993b05fef46908519530866c Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:17:11 -0500 Subject: [PATCH] Parser Tests: add tag to differentiate (#11017) --- unittests/test_parsers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unittests/test_parsers.py b/unittests/test_parsers.py index 63edff395c..9e2ac077f1 100644 --- a/unittests/test_parsers.py +++ b/unittests/test_parsers.py @@ -1,11 +1,14 @@ import os from pathlib import Path +from django.test import tag as test_tag + from .dojo_test_case import DojoTestCase, get_unit_tests_path basedir = os.path.join(get_unit_tests_path(), "..") +@test_tag("parser-supplement-tests") class TestParsers(DojoTestCase): def test_file_existence(self): for parser_dir in os.scandir(os.path.join(basedir, "dojo", "tools")):