kiwitcms/Kiwi

View on GitHub
tcms/telemetry/urls.py

Summary

Maintainability
B
5 hrs
Test Coverage
from django.urls import re_path

from tcms.telemetry import views

urlpatterns = [
    re_path(
        r"^testing/breakdown/$",
        views.TestingBreakdownView.as_view(),
        name="testing-breakdown",
    ),
    re_path(
        r"^testing/execution/dashboard/$",
        views.TestingExecutionDashboard.as_view(),
        name="execution-dashboard",
    ),
    re_path(
        r"^testing/execution/matrix/$",
        views.TestingStatusMatrixView.as_view(),
        name="testing-status-matrix",
    ),
    re_path(
        r"^testing/execution/trends/$",
        views.TestingExecutionTrendsView.as_view(),
        name="testing-execution-trends",
    ),
    re_path(
        r"^testing/test-case-health/$",
        views.TestingTestCaseHealth.as_view(),
        name="test-case-health",
    ),
]