src/eric7/Testing/Interfaces/UnittestRunner.py

branch
eric7
changeset 9413
80c06d472826
parent 9313
6bac6775abb2
child 9442
906485dcd210
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9412:45e7bb09c120 9413:80c06d472826
272 Function to run the tests. 272 Function to run the tests.
273 273
274 @param argv list of command line parameters. 274 @param argv list of command line parameters.
275 @type list of str 275 @type list of str
276 """ 276 """
277 from EricNetwork.EricJsonStreamWriter import EricJsonWriter 277 from eric7.EricNetwork.EricJsonStreamWriter import EricJsonWriter
278 278
279 writer = EricJsonWriter(argv[0], int(argv[1])) 279 writer = EricJsonWriter(argv[0], int(argv[1]))
280 del argv[:2] 280 del argv[:2]
281 281
282 # process arguments 282 # process arguments
355 os.path.join( 355 os.path.join(
356 os.path.dirname(__file__), "..", "..", "DebugClients", "Python" 356 os.path.dirname(__file__), "..", "..", "DebugClients", "Python"
357 ) 357 )
358 ), 358 ),
359 ) 359 )
360 from DebugClients.Python.coverage import Coverage 360 from eric7.DebugClients.Python.coverage import Coverage
361 361
362 cover = Coverage(data_file=covDataFile) 362 cover = Coverage(data_file=covDataFile)
363 if coverageErase: 363 if coverageErase:
364 cover.erase() 364 cover.erase()
365 cover.start() 365 cover.start()

eric ide

mercurial