Skip to content

Commit f2496f9

Browse files
committed
mx_graalpython.py: remove pickle specific gate
1 parent a2c7bae commit f2496f9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@ class GraalPythonTags(object):
464464
unittest_hpy = 'python-unittest-hpy'
465465
unittest_hpy_sandboxed = 'python-unittest-hpy-sandboxed'
466466
unittest_posix = 'python-unittest-posix'
467-
unittest_pickle = 'python-unittest-pickle'
468467
tagged = 'python-tagged-unittest'
469468
svmunit = 'python-svm-unittest'
470469
svmunit_sandboxed = 'python-svm-unittest-sandboxed'
@@ -830,10 +829,6 @@ def graalpython_gate_runner(args, tasks):
830829
run_python_unittests(python_gvm_with_assertions(), args=["--PosixModuleBackend=native"], paths=["test_posix.py", "test_mmap.py"])
831830
run_python_unittests(python_gvm_with_assertions(), args=["--PosixModuleBackend=java"], paths=["test_posix.py", "test_mmap.py"])
832831

833-
with Task('GraalPython pickle/struct module tests', tasks, tags=[GraalPythonTags.unittest_pickle]) as task:
834-
if task:
835-
run_python_unittests(python_gvm_with_assertions(), paths=["test_struct.py", "test_pickle.py"])
836-
837832
with Task('GraalPython Python tests', tasks, tags=[GraalPythonTags.tagged]) as task:
838833
if task:
839834
run_tagged_unittests(python_svm())

0 commit comments

Comments
 (0)