Repository: incubator-airflow
Updated Branches:
  refs/heads/master c06e5fa1e -> 10b6ca5e4


[AIRFLOW-2801] Skip test_mark_success_no_kill in PostgreSQL on CI

See mailing list thread "Flaky test case:
test_mark_success_no_kill".

Closes #3642 from
tedmiston/test_mark_success_no_kill-postgresql


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/10b6ca5e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/10b6ca5e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/10b6ca5e

Branch: refs/heads/master
Commit: 10b6ca5e4808c0ac948456e1004f9f64aae54a4d
Parents: c06e5fa
Author: Taylor D. Edmiston <[email protected]>
Authored: Thu Jul 26 11:02:47 2018 +0200
Committer: Fokko Driesprong <[email protected]>
Committed: Thu Jul 26 11:02:47 2018 +0200

----------------------------------------------------------------------
 tests/jobs.py | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/10b6ca5e/tests/jobs.py
----------------------------------------------------------------------
diff --git a/tests/jobs.py b/tests/jobs.py
index cda4517..93f6574 100644
--- a/tests/jobs.py
+++ b/tests/jobs.py
@@ -1088,6 +1088,8 @@ class LocalTaskJobTest(unittest.TestCase):
 
     @unittest.skipIf('mysql' in configuration.conf.get('core', 
'sql_alchemy_conn'),
                      "flaky when run on mysql")
+    @unittest.skipIf('postgresql' in configuration.conf.get('core', 
'sql_alchemy_conn'),
+                     'flaky when run on postgresql')
     def test_mark_success_no_kill(self):
         """
         Test that ensures that mark_success in the UI doesn't cause

Reply via email to