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), ]