summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-04-30 01:10:43 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-04-30 01:10:43 (GMT)
commitf095eb14013f1f3e21dbb213b4e43694ecbf091d (patch)
tree0bf58214c693246b2d99ecb97295c90c6a1627b6 /runtest.py
parent4d2f1e1c2b35d4908067a36cba6850371017c105 (diff)
downloadSCons-f095eb14013f1f3e21dbb213b4e43694ecbf091d.zip
SCons-f095eb14013f1f3e21dbb213b4e43694ecbf091d.tar.gz
SCons-f095eb14013f1f3e21dbb213b4e43694ecbf091d.tar.bz2
move test files from QMTest to testing/framework. QMtest hasn't been used in quite some time
Diffstat (limited to 'runtest.py')
-rwxr-xr-xruntest.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/runtest.py b/runtest.py
index cf8925c..e5c5f2f 100755
--- a/runtest.py
+++ b/runtest.py
@@ -8,9 +8,9 @@
#
# - 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/
+# require custom SCons framework from testing/
#
-# This script adds src/ and QMTest/ directories to PYTHONPATH,
+# This script adds src/ and testing/ directories to PYTHONPATH,
# performs test discovery and processes them according to options.
#
# With -p (--package) option, script tests specified package from
@@ -625,10 +625,8 @@ old_pythonpath = os.environ.get('PYTHONPATH')
# should be able to go away.
pythonpaths = [ pythonpath_dir ]
-# Add path of the QMTest folder to PYTHONPATH
-# [ ] move used parts from QMTest to testing/framework/
scriptpath = os.path.dirname(os.path.realpath(__file__))
-pythonpaths.append(os.path.join(scriptpath, 'QMTest'))
+
# Add path for testing framework to PYTHONPATH
pythonpaths.append(os.path.join(scriptpath, 'testing', 'framework'))