예제 #1
0
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.pytest_args = ['--cov', PACKAGENAME, '--disable-warnings']
예제 #2
0
 def __init__(self, *args, **kwargs):
     test.__init__(self, *args, **kwargs)
     self.test_args = []
     self.test_suite = True
     self.forever = False
예제 #3
0
 def __init__(self, *args, **kwargs):
     TestCommand.__init__(self, *args, **kwargs)
     self.test_suite = True
예제 #4
0
파일: setup.py 프로젝트: yeunga/vostools
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.pytest_args = ['--cov', PACKAGENAME]
예제 #5
0
파일: setup.py 프로젝트: yeunga/vostools
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.pytest_args = ['intTest']
예제 #6
0
파일: setup.py 프로젝트: clee/opencafe
 def __init__(self, *args, **kwargs):
     TestCommand.__init__(self, *args, **kwargs)
예제 #7
0
파일: setup.py 프로젝트: probcomp/bayeslite
 def __init__(self, *args, **kwargs):
     test.__init__(self, *args, **kwargs)
     self.test_suite = "not None"
예제 #8
0
 def __init__(self, *args, **kwargs):
     test.__init__(self, *args, **kwargs)
     self.test_suite = "not None"
예제 #9
0
파일: setup.py 프로젝트: pwithnall/hotdoc
 def __init__(self, *args, **kwargs):
     test.__init__(self, *args, **kwargs)
     self.test_args = []
     self.test_suite = True
     self.forever = False
예제 #10
0
 def __init__(self, *args, **kwargs):
     test.__init__(self, *args, **kwargs)
     self.test_suite = ' '.join(test_directories)
     self.build_lib = None
예제 #11
0
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.tox_args = None
     self.test_args = []
     self.test_suite = True
예제 #12
0
파일: setup.py 프로젝트: jayelm/bdbcontrib
 def __init__(self, *args, **kwargs):
     TestCommand.__init__(self, *args, **kwargs)
     self.test_suite = 'tests'
     self.build_lib = None
예제 #13
0
 def __init__(self, *args, **kwargs):
     TestCommand.__init__(self, *args, **kwargs)
     self.test_suite = 'tests'
     self.build_lib = None
예제 #14
0
파일: setup.py 프로젝트: hughhhh/casper
 def __init__(self, *args, **kwargs):
     TestCommand.__init__(self, *args, **kwargs)
     self.test_suite = True
예제 #15
0
 def __init__(self, dist, **kw):
     THIS_DIR = os.path.dirname(os.path.realpath(__file__))
     INT_TEST_DIR = os.path.join(THIS_DIR, PACKAGENAME, 'int_tests')
     TestCommand.__init__(self, dist, **kw)
     self.pytest_args = [str(INT_TEST_DIR)]
예제 #16
0
파일: setup.py 프로젝트: opencadc/caom2eng
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.pytest_args = ['--cov', PACKAGENAME]
예제 #17
0
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.tox_args = None
     self.test_args = []
     self.test_suite = True
예제 #18
0
파일: setup.py 프로젝트: canfar/vos
 def __init__(self, dist, **kw):
     TestCommand.__init__(self, dist, **kw)
     self.pytest_args = ['intTest']