summaryrefslogtreecommitdiff
path: root/robyn
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-11-25 15:42:45 -0800
committerKenneth Graunke <kenneth@whitecape.org>2012-11-25 15:42:45 -0800
commit4df645cdadbcb6dcf3c31b682b66b3e1741be892 (patch)
tree987b411dc54fefef33477b1d5b7a402f7b66a58e /robyn
parent1f35192efe43f96420c2a440725203ed0ff29a57 (diff)
basic 'robyn list-runs' command
needs lots of work: --pretty option -t and -x filtering --since date?
Diffstat (limited to 'robyn')
-rwxr-xr-xrobyn6
1 files changed, 6 insertions, 0 deletions
diff --git a/robyn b/robyn
index d4f2ffc..c925da1 100755
--- a/robyn
+++ b/robyn
@@ -23,6 +23,7 @@
#
import sys
import programs.run
+import programs.listRuns
import framework.config
def usage():
@@ -36,6 +37,9 @@ Valid commands are:
- resume Resume an in-progress test run
- report Generate a report on the results.
+ Results management:
+ - list-runs List previous test runs
+
Suite management:
- list-suites List known test suites
- add-suite Add a new test suite to your .robynrc
@@ -53,5 +57,7 @@ args = sys.argv[2:]
if cmd == 'run':
programs.run.main(args, config)
+elif cmd == 'list-runs':
+ programs.listRuns.main(args, config)
else:
usage()