Add run_test_list, simple version
diff --git a/profiles/default.py b/profiles/default.py
index 8313eb7..592797e 100644
--- a/profiles/default.py
+++ b/profiles/default.py
@@ -7,3 +7,7 @@
#@var skip_test_list The list of tests to skip for this run
skip_test_list = [
]
+
+#@var run_test_list List of tests to run which would normally be skipped
+run_test_list = [
+]
diff --git a/profiles/example.py b/profiles/example.py
index 6e23b92..0928119 100644
--- a/profiles/example.py
+++ b/profiles/example.py
@@ -19,15 +19,17 @@
#@var skip_test_list The list of tests to skip for this run
skip_test_list = []
-# TO BE IMPLEMENTED
-# A list of test cases with parameters(?)
-# TBD
+# A list of test cases
#@var run_test_list List of tests to run which would normally be skipped
-run_test_list = dict(
- # Example
- # SomeTestCase = [dict(<params1>), dict(<params2>),...],
-)
+run_test_list = []
+#
+# Ideally, we should allow parameters to be specified
+#
+# run_test_list = (
+# testcase = [dict(param1), dict(param2), ...],
+# )
+#
# for test_dict in profile.run_test_list:
# for test_name, test_params in test_dict.items():
# ...