From bcc940ff72a34a8308c93d4d623014091aee1a3c 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(-) diff --git a/runtest.py b/runtest.py index 244d3ab..eee88dc 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 v0.12