Skip to content

Commit 36923ab

Browse files
committed
Remove python-tagged-unittest-sandboxed
It used to be for testing intrinsified pickle and struct, but those are now tested in the normal tests.
1 parent 25c411e commit 36923ab

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,6 @@ class GraalPythonTags(object):
782782
unittest_standalone = 'python-unittest-standalone'
783783
ginstall = 'python-ginstall'
784784
tagged = 'python-tagged-unittest'
785-
tagged_sandboxed = 'python-tagged-unittest-sandboxed'
786785
svmunit = 'python-svm-unittest'
787786
svmunit_sandboxed = 'python-svm-unittest-sandboxed'
788787
graalvm = 'python-graalvm'
@@ -1581,11 +1580,6 @@ def graalpython_gate_runner(args, tasks):
15811580
# don't fail this task if we're running with the jacoco agent, we know that some tests don't pass with it enabled
15821581
run_tagged_unittests(graalpy_standalone_native(), nonZeroIsFatal=(not is_collecting_coverage()), report=report())
15831582

1584-
with Task('GraalPython sandboxed Python tests', tasks, tags=[GraalPythonTags.tagged_sandboxed]) as task:
1585-
if task:
1586-
with set_env(GRAAL_PYTHON_ARGS=" ".join(SANDBOXED_OPTIONS)):
1587-
run_tagged_unittests(graalpy_standalone_native_enterprise(), checkIfWithGraalPythonEE=True, cwd=SUITE.dir, report=report())
1588-
15891583
# Unittests on SVM
15901584
with Task('GraalPython tests on SVM', tasks, tags=[GraalPythonTags.svmunit, GraalPythonTags.windows]) as task:
15911585
if task:

0 commit comments

Comments
 (0)