aboutsummaryrefslogtreecommitdiffstats
path: root/api/urls.py
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2017-01-11 03:03:10 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-11 03:03:10 +0000
commit708550dd0718abdad8862e2275cc8e025a7c55e3 (patch)
treeb11161934a59b336842fdd1658791c9d176b4eba /api/urls.py
parent205729564104b309058ad011f1daf402a285d7b8 (diff)
parent52ae99e54fc67614e71bf1920848bb7b16bcd153 (diff)
Merge "Create API to run test suite"
Diffstat (limited to 'api/urls.py')
-rw-r--r--api/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/urls.py b/api/urls.py
index 273fb40f8..58df29142 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -14,6 +14,7 @@ urlpatterns = [
Url('/yardstick/asynctask', views.Asynctask, 'asynctask'),
Url('/yardstick/testcases/release/action', views.ReleaseAction, 'release'),
Url('/yardstick/testcases/samples/action', views.SamplesAction, 'samples'),
+ Url('/yardstick/testsuites/action', views.TestsuitesAction, 'testsuites'),
Url('/yardstick/results', views.Results, 'results'),
Url('/yardstick/env/action', views.EnvAction, 'env')
]