Skip to content

Commit 1c6f071

Browse files
committed
Print functional tests' name.
1 parent 51020c9 commit 1c6f071

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

run_functional_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
all_ok = True
1717

1818
for filename in glob.glob(TESTS_DIR + os.path.sep + '*.py'):
19+
print('Running test: {}'.format(filename))
1920
vm_result = subprocess.check_output([BIN, LIB_DIR, filename + 'c'], universal_newlines=True)
2021
system_python_result = subprocess.check_output([sys.executable, filename], universal_newlines=True)
2122
if vm_result != system_python_result:

0 commit comments

Comments
 (0)