Skip to content

Commit bf29bdd

Browse files
committed
refactor: update backend test command and change superuser password
- Replaced the backend test command in the Makefile to use `tests-start.sh` for improved test execution. - Updated the default superuser password in the configuration file for enhanced security.
1 parent 04a15da commit bf29bdd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ backend-test: backend-install
277277
@echo "===========> Running backend tests with coverage"
278278
@source $(BACKEND_DIR)/.venv/bin/activate && \
279279
cd $(BACKEND_DIR) && \
280-
bash scripts/test.sh
280+
bash scripts/tests-start.sh
281281

282282
## backend-lint: Run backend linters
283283
.PHONY: backend-lint

backend/app/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def emails_enabled(self) -> bool:
192192

193193
EMAIL_TEST_USER: EmailStr = "[email protected]"
194194
FIRST_SUPERUSER: EmailStr = "[email protected]"
195-
FIRST_SUPERUSER_PASSWORD: str = "admin"
195+
FIRST_SUPERUSER_PASSWORD: str = "telepace"
196196

197197
# PostHog Configuration
198198
POSTHOG_API_KEY: str | None = None

0 commit comments

Comments
 (0)