Merge branch 'development' into fossdb

This commit is contained in:
Kristofers Solo 2023-06-29 09:45:45 +00:00
commit b23421702f
7 changed files with 4 additions and 11 deletions

View File

@ -15,4 +15,4 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python manage.py test
run: python src/manage.py test

View File

@ -14,6 +14,8 @@ warn_unused_configs = true
[tool.ruff]
line-length = 160
exclude = ["**/**/migrations"]
[tool.black]
line-length = 160

View File

@ -4,3 +4,4 @@ fontawesomefree==6.4.0
mysqlclient==2.1.1
django-filter==23.2
django-tailwind==3.6.0
django-crispy-forms==2.0

View File

@ -23,7 +23,6 @@ urlpatterns = [
path("", include("main.urls")),
path("", include("account.urls")),
path("", include("django.contrib.auth.urls")),
path("__reload__/", include("django_browser_reload.urls")),
]
if settings.DEBUG:
from django.conf.urls.static import static

View File

@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.

View File

@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.