From 116eef839e018bbdd867311fddf1cfc1f8a10d8c Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Thu, 20 Mar 2014 15:14:09 +0300 Subject: runtest.py: "module tests" are properly named "end-to-end" tests --- runtest.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'runtest.py') diff --git a/runtest.py b/runtest.py index 244d3aba..eee88dc5 100755 --- a/runtest.py +++ b/runtest.py @@ -6,8 +6,9 @@ # # SCons test suite consists of: # -# - unit tests - included in *Tests.py files from src/ dir -# - module tests - are in test/ dir and use framework from QMTest/ +# - unit tests - included in *Tests.py files from src/ dir +# - end-to-end tests - these are *.py files in test/ directory that +# require custom SCons framework from QMTest/ # # This script adds src/ and QMTest/ directories to PYTHONPATH, # performs test discovery and processes them according to options. @@ -655,7 +656,7 @@ def find_Tests_py(directory): return sorted(result) def find_py(directory): - """ Look for module tests """ + """ Look for end-to-end tests """ result = [] for dirpath, dirnames, filenames in os.walk(directory): # Skip folders containing a sconstest.skip file -- cgit v1.2.1