X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=api%2Furls.py;h=b9ddd4c7235e379a042e04dbbafc72d2645b7b89;hb=2350849a5c764822f267ca5c9efc4a847c9132e6;hp=273fb40f8225af4c0d9723ee46ec457426b91183;hpb=63e75aad3b01de4fc20468d5dd9cdb9b15c5e11e;p=yardstick.git diff --git a/api/urls.py b/api/urls.py index 273fb40f8..b9ddd4c72 100644 --- a/api/urls.py +++ b/api/urls.py @@ -6,14 +6,18 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +from __future__ import absolute_import + from api import views from api.utils.common import Url urlpatterns = [ Url('/yardstick/asynctask', views.Asynctask, 'asynctask'), + Url('/yardstick/testcases', views.Testcases, 'testcases'), 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') ]