build: fait en sorte qu'on puisse lancer les tests

pull/14/head
Vincent Adolphe 2022-11-08 15:40:05 +01:00
Parent aaaf73af6f
révision 8f6dcadea7
3 fichiers modifiés avec 11 ajouts et 1 suppressions

3
.gitignore externe
Voir le fichier

@ -3,3 +3,6 @@
settings_local*.py
.env
.ropeproject
sqlite3.db
TAGS
tags

Voir le fichier

@ -1,4 +1,4 @@
#!/usr/bin/python
#! /usr/bin/env python
from django.core.management import execute_manager
try:
import settings # Assumed to be in the same directory.

Voir le fichier

@ -12,6 +12,13 @@ ADMINS = (
# ('Your Name', 'your_email@domain.com'),
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': PROJECT_PATH + '/sqlite3.db',
}
}
MANAGERS = ADMINS
# Local time zone for this installation. Choices can be found here: