diff --git a/pake.py b/pake.py index 8d1431e..25821c8 100644 --- a/pake.py +++ b/pake.py @@ -1,3 +1,15 @@ -with open('./unit/test_run.py') as ut: +# Run, unit/xunit.py + +print('----------------------------------------------------------------------') + +with open('./unit/xunit.py') as xut: + xcmd = xut.read() + exec(xcmd) + +print('----------------------------------------------------------------------') + +# Run, unit/unit.py + +with open('./unit/unit.py') as ut: cmd = ut.read() exec(cmd)