Skip to content

Commit c3b9c1f

Browse files
committed
never run the tagged tests unless *explicitly* enabled
1 parent f53bea4 commit c3b9c1f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_tagged_unittests.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@
4444
import test
4545

4646

47-
if os.environ.get("ENABLE_CPYTHON_TAGGED_UNITTESTS") == "true" or os.environ.get("CI") is None:
48-
# On the CI, I'd like to explicitly enable these, so we can run them in a
49-
# separate job easily. But it's not important for local execution
47+
if os.environ.get("ENABLE_CPYTHON_TAGGED_UNITTESTS") == "true":
5048
TAGS_DIR = os.path.join(os.path.dirname(__file__), "unittest_tags")
5149
else:
5250
TAGS_DIR = "null"

0 commit comments

Comments
 (0)