feat: install oauth app and parallelize tests

wip-payments
Aravinth Manivannan 2022-06-06 04:19:50 +05:30
parent d3eb1cf688
commit 25937ca6a9
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

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