• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import sys, os
2import copy
3sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
4import testpy
5
6def GetConfiguration(context, root):
7  myContext = copy.copy(context)
8  myContext.expect_fail = 1
9  return testpy.SimpleTestConfiguration(myContext, root, 'known_issues')
10