From 25937ca6a9a6268b01034fc1f02cd62c28bd19bc Mon Sep 17 00:00:00 2001 From: realaravinth Date: Mon, 6 Jun 2022 04:19:50 +0530 Subject: [PATCH] feat: install oauth app and parallelize tests --- Makefile | 2 +- dashboard/urls.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 44464d2..3c164bc 100644 --- a/Makefile +++ b/Makefile @@ -38,4 +38,4 @@ migrate: ## Run migrations $(call run_migrations) test: ## Run tests - @. ./venv/bin/activate && python manage.py test + @. ./venv/bin/activate && python manage.py test --parallel diff --git a/dashboard/urls.py b/dashboard/urls.py index d4f474b..04c4714 100644 --- a/dashboard/urls.py +++ b/dashboard/urls.py @@ -14,8 +14,9 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin -from django.urls import path +from django.urls import path, include urlpatterns = [ + path("oauth/", include("oauth.urls")), path("admin/", admin.site.urls), ]