This is an automated email from the ASF dual-hosted git repository.
xddeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 076eaea Remove ``test_deserialization_across_process`` from
quarantine (#15264)
076eaea is described below
commit 076eaeaa2bec38960fb4d9a24c28c03321e9a00c
Author: Kaxil Naik <[email protected]>
AuthorDate: Thu Apr 8 06:28:06 2021 +0100
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
---
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 65f0563..e6159a6 100644
--- a/tests/serialization/test_dag_serialization.py
+++ b/tests/serialization/test_dag_serialization.py
@@ -303,7 +303,6 @@ class TestStringifiedDAGs(unittest.TestCase):
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."""