Remove xmlrunner dependency to improve Jython build stability on travis.
parent
91dc5c29b5
commit
54f83919e4
|
|
@ -1,2 +1 @@
|
||||||
unittest2==0.5.1
|
unittest2==0.5.1
|
||||||
xmlrunner==1.7.4
|
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import unittest2 as unittest
|
||||||
def main():
|
def main():
|
||||||
parser = OptionParser()
|
parser = OptionParser()
|
||||||
parser.add_option("-x", "--xml", action="store_true", dest="xml",
|
parser.add_option("-x", "--xml", action="store_true", dest="xml",
|
||||||
help="write test report in xunit file format")
|
help="write test report in xunit file format (requires xmlrunner==1.7.4)")
|
||||||
(options, args) = parser.parse_args(sys.argv)
|
(options, args) = parser.parse_args(sys.argv)
|
||||||
loader = unittest.defaultTestLoader
|
loader = unittest.defaultTestLoader
|
||||||
names = args[1:]
|
names = args[1:]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue