src/eric7/Testing/Interfaces/UnittestRunner.py

branch
eric7-maintenance
changeset 9442
906485dcd210
parent 9371
1da8bc75946f
parent 9413
80c06d472826
child 9549
67295777d9fe
equal deleted inserted replaced
9379:f23c43e18046 9442:906485dcd210
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