# HG changeset patch # User Denis Laxalde # Date 1484756160 -3600 # Node ID c5d3382f14e9e5153f0725c850f28e9cdb470bf3 # Parent 2ceb0bfa4b3f0bed746d650ab1e57acdc2f2831f [devtools/test] Skip qunit tests in case of timeout Follow-up on 87443f279b0f where other similar tests got adjusted not to fail (in particular in our CI environment). diff -r 2ceb0bfa4b3f -r c5d3382f14e9 cubicweb/devtools/test/unittest_qunit.py --- a/cubicweb/devtools/test/unittest_qunit.py Thu Feb 18 14:22:07 2016 +0100 +++ b/cubicweb/devtools/test/unittest_qunit.py Wed Jan 18 17:16:00 2017 +0100 @@ -1,3 +1,5 @@ +from unittest import SkipTest + from cubicweb.devtools import qunit @@ -6,6 +8,7 @@ class QUnitTestCaseTC(qunit.QUnitTestCase): + timeout_error = SkipTest all_js_tests = ( (js('test_simple_success.js'),), (js('test_with_dep.js'), (js('dep_1.js'),)),