diff options
author | JingLu5 <lvjing5@huawei.com> | 2016-12-22 12:07:55 +0800 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2017-01-10 15:31:35 +0000 |
commit | 52ae99e54fc67614e71bf1920848bb7b16bcd153 (patch) | |
tree | 1590f685827ad1a91e550e3b013e3e25fb2dd224 /api/urls.py | |
parent | 74479a22c461cc2c08f9525879481c0a86d3af84 (diff) |
Create API to run test suite
JIRA: YARDSTICK-475
This API will be used to run test suite files in the test/opnfv/test_suites directory
Change-Id: I208edf9abed62fd6436de988ac85bfe99c4d01bd
Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'api/urls.py')
-rw-r--r-- | api/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/urls.py b/api/urls.py index 0fffd12db..7f9f0bb07 100644 --- a/api/urls.py +++ b/api/urls.py @@ -13,6 +13,7 @@ from api.utils.common import Url urlpatterns = [ 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') ] |