Skip to content

Commit ff2983a

Browse files
committed
ci: Adds a ci job for installing janeway
1 parent 04a3ce3 commit ff2983a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ jobs:
5151
echo "Running unit tests"
5252
python src/manage.py test
5353
echo "Test run completed."
54+
55+
- name: Test installing Janeway
56+
run: |
57+
echo "Test Installing Janeway"
58+
python src/manage.py install_janeway --use-defaults
59+
echo "Test run completed."
60+

src/core/janeway_global_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
DATABASES = {
231231
"default": {
232232
"ENGINE": "django.db.backends.sqlite3",
233-
"NAME": "/db/janeway.sqlite3",
233+
"NAME": os.path.join(PROJECT_DIR, "db.sqlite3"),
234234
}
235235
}
236236

0 commit comments

Comments
 (0)