mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
Merge branch 'development' into fossdb
This commit is contained in:
commit
b23421702f
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -15,4 +15,4 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: python manage.py test
|
run: python src/manage.py test
|
||||||
|
|||||||
@ -14,6 +14,8 @@ warn_unused_configs = true
|
|||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 160
|
line-length = 160
|
||||||
|
exclude = ["**/**/migrations"]
|
||||||
|
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 160
|
line-length = 160
|
||||||
|
|||||||
@ -4,3 +4,4 @@ fontawesomefree==6.4.0
|
|||||||
mysqlclient==2.1.1
|
mysqlclient==2.1.1
|
||||||
django-filter==23.2
|
django-filter==23.2
|
||||||
django-tailwind==3.6.0
|
django-tailwind==3.6.0
|
||||||
|
django-crispy-forms==2.0
|
||||||
|
|||||||
@ -23,7 +23,6 @@ urlpatterns = [
|
|||||||
path("", include("main.urls")),
|
path("", include("main.urls")),
|
||||||
path("", include("account.urls")),
|
path("", include("account.urls")),
|
||||||
path("", include("django.contrib.auth.urls")),
|
path("", include("django.contrib.auth.urls")),
|
||||||
path("__reload__/", include("django_browser_reload.urls")),
|
|
||||||
]
|
]
|
||||||
if settings.DEBUG:
|
if settings.DEBUG:
|
||||||
from django.conf.urls.static import static
|
from django.conf.urls.static import static
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
from django.contrib import admin
|
|
||||||
|
|
||||||
# Register your models here.
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
from django.db import models
|
|
||||||
|
|
||||||
# Create your models here.
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
from django.test import TestCase
|
|
||||||
|
|
||||||
# Create your tests here.
|
|
||||||
Loading…
Reference in New Issue
Block a user