Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
takkii committed Oct 31, 2023
1 parent fc114dd commit 6d5e1e3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pake.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 6d5e1e3

Please sign in to comment.