Commit a16f0b2f by Ari Rizzitano

test_problem_type_a11y is flaky

parent 05f55d5b
...@@ -6,6 +6,7 @@ See also lettuce tests in lms/djangoapps/courseware/features/problems.feature ...@@ -6,6 +6,7 @@ See also lettuce tests in lms/djangoapps/courseware/features/problems.feature
import random import random
import textwrap import textwrap
from abc import ABCMeta, abstractmethod from abc import ABCMeta, abstractmethod
from flaky import flaky
import ddt import ddt
from nose import SkipTest from nose import SkipTest
...@@ -143,6 +144,7 @@ class ProblemTypeA11yTestMixin(object): ...@@ -143,6 +144,7 @@ class ProblemTypeA11yTestMixin(object):
Shared a11y tests for all problem types. Shared a11y tests for all problem types.
""" """
@attr('a11y') @attr('a11y')
@flaky # TE-2179
def test_problem_type_a11y(self): def test_problem_type_a11y(self):
""" """
Run accessibility audit for the problem type. Run accessibility audit for the problem type.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment