Skip to content

Commit ea0aba7

Browse files
committed
Improve debugging output
1 parent f4b44b3 commit ea0aba7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/hypothesistooling.py

+4
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,8 @@ def changed_files_from_master():
364364

365365
def should_run_ci_task(task, is_pull_request):
366366
"""Given a task name, should we run this task?"""
367+
print('Considering whether we should run make %s...' % task)
368+
367369
if not is_pull_request:
368370
print('We only skip tests if the job is a pull request.')
369371
return True
@@ -387,6 +389,8 @@ def should_run_ci_task(task, is_pull_request):
387389
# know are safe to ignore, and run tests if there's anything left.
388390
changed_files = changed_files_from_master()
389391

392+
print('@@AWLC changed_files = %r' % changed_files)
393+
390394
interesting_changed_files = [
391395
f for f in changed_files if could_affect_tests(f)
392396
]

0 commit comments

Comments
 (0)