Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the tests workflow #354

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ EMAIL_SEND_METHOD=sync
UPDATE_ORGANIZATION_METHOD=sync

# Enable/Disable different features that interfere with debugging
ENABLE_FULL_CUI_VALIDATION=False
ENABLE_FULL_CUI_VALIDATION=True

DATA_UPLOAD_MAX_NUMBER_FIELDS=100000
DONATIONS_XML_LIMIT_PER_FILE=100
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/backend_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
tests:
name: Run backend tests
runs-on: ubuntu-latest
timeout-minutes: 5

services:
postgres:
Expand Down Expand Up @@ -134,7 +135,7 @@ jobs:
DATABASE_NAME: redirect
DATABASE_USER: user
DATABASE_PASSWORD: password
DATABASE_HOST: postgres
DATABASE_HOST: 127.0.0.1
DATABASE_PORT: 5432
run: |
cd ./backend
Expand Down
Loading