From 4f09df2477a58f8745b20f3d5b0ac8b0828c7db0 Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Thu, 8 Apr 2021 06:28:06 +0100 Subject: [PATCH] Remove ``test_deserialization_across_process`` from quarantine (#15264) I have not seen `TestStringifiedDAGs.test_deserialization_across_process` failing from a long time. Based on https://github.com/apache/airflow/issues/10118 -- this is the only test we should un-quarantine for now as I have seen the other tests failing here and there GitOrigin-RevId: 076eaeaa2bec38960fb4d9a24c28c03321e9a00c --- tests/serialization/test_dag_serialization.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/serialization/test_dag_serialization.py b/tests/serialization/test_dag_serialization.py index 65f05637b8..e6159a6a72 100644 --- a/tests/serialization/test_dag_serialization.py +++ b/tests/serialization/test_dag_serialization.py @@ -303,7 +303,6 @@ def sorted_serialized_dag(dag_dict: dict): assert sorted_serialized_dag(ground_truth_dag) == sorted_serialized_dag(json_dag) - @pytest.mark.quarantined def test_deserialization_across_process(self): """A serialized DAG can be deserialized in another process."""