summaryrefslogtreecommitdiff
path: root/funcs.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-04-09 19:06:01 +0300
committerLars Wirzenius <liw@liw.fi>2020-04-09 19:06:01 +0300
commitc4d824cb8de19d24579dc2721a61b7a73355c0cb (patch)
tree5e23c0a00bbbfb3cce8a0b3dc9bac8628934dcda /funcs.py
parent840300655a0bab67c2bfe8243578ee10deb3c822 (diff)
downloadick-contractor-c4d824cb8de19d24579dc2721a61b7a73355c0cb.tar.gz
Drop: debug prints
Diffstat (limited to 'funcs.py')
-rw-r--r--funcs.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/funcs.py b/funcs.py
index 64bad4d..ada6e7d 100644
--- a/funcs.py
+++ b/funcs.py
@@ -57,9 +57,6 @@ def create_file(ctx, filename=None):
# Check that a file exists.
def file_exists(ctx, filename=None):
- print(os.listdir())
- print(os.listdir('ws'))
- print(os.listdir('ws/src'))
assert_eq(os.path.exists(filename), True)
@@ -71,7 +68,6 @@ def copy_file_from_srcdir(ctx, filename=None):
# Check that the subprocess we last ran ended with the expected exit
# code.
def exit_code_is(ctx, exit_code=None):
- print(ctx.as_dict())
assert_eq(ctx['exit'], int(exit_code))