diff options
author | anatoly techtonik <techtonik@gmail.com> | 2014-03-20 12:14:09 (GMT) |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2014-03-20 12:14:09 (GMT) |
commit | bcc940ff72a34a8308c93d4d623014091aee1a3c (patch) | |
tree | 387596f191c7ff3411b933932c87e33ea22fedd9 /runtest.py | |
parent | 203d767fd785a7afc5a33f5b8d238705deaa9c99 (diff) | |
download | SCons-bcc940ff72a34a8308c93d4d623014091aee1a3c.zip SCons-bcc940ff72a34a8308c93d4d623014091aee1a3c.tar.gz SCons-bcc940ff72a34a8308c93d4d623014091aee1a3c.tar.bz2 |
runtest.py: "module tests" are properly named "end-to-end" tests
Diffstat (limited to 'runtest.py')
-rwxr-xr-x | runtest.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |