Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4cbe80f
implement email logic
Zahed-Riyaz Jun 24, 2025
9ef7fcc
Add templates + refine email logic
Zahed-Riyaz Jun 25, 2025
850c516
Add tests for paid plans email feature
Zahed-Riyaz Jun 26, 2025
20e8cf6
Omit debugs
Zahed-Riyaz Jul 2, 2025
41f0b3e
Update utils.ppy
Zahed-Riyaz Jul 2, 2025
c057444
implement email logic
Zahed-Riyaz Jun 24, 2025
fb91c17
Add templates + refine email logic
Zahed-Riyaz Jun 25, 2025
c694e42
Add tests for paid plans email feature
Zahed-Riyaz Jun 26, 2025
66933ac
Omit debugs
Zahed-Riyaz Jul 2, 2025
210d8d1
Update utils.ppy
Zahed-Riyaz Jul 2, 2025
e77ef40
Refine tests
Zahed-Riyaz Jul 3, 2025
a17f453
Merge branch 'email-plan' of https://github.com/Zahed-Riyaz/EvalAI in…
Zahed-Riyaz Jul 3, 2025
952cb64
Modify tests
Zahed-Riyaz Jul 3, 2025
c360077
remove unnecessary imports
Zahed-Riyaz Jul 3, 2025
9c6cd0d
Update docker-compose.yml
Zahed-Riyaz Jul 3, 2025
6d8f6dc
Handle undefined variables
Zahed-Riyaz Jul 3, 2025
d61cecf
Update test_views.py
Zahed-Riyaz Jul 3, 2025
963ccea
Update env variables and tests
Zahed-Riyaz Jul 5, 2025
42db7bc
Update env variables and tests
Zahed-Riyaz Jul 5, 2025
8a91943
Update email
Zahed-Riyaz Jul 5, 2025
e9802a6
Merge branch 'master' into email-plan
Zahed-Riyaz Jul 5, 2025
0fadd8d
fix isort checks
Zahed-Riyaz Jul 5, 2025
5784799
Resolve Flake8 checks
Zahed-Riyaz Jul 5, 2025
bc60d74
Merge branch 'master' into email-plan
Zahed-Riyaz Jul 10, 2025
98c06bc
Merge branch 'master' into email-plan
Zahed-Riyaz Jul 15, 2025
065cdb3
Merge branch 'master' into email-plan
Zahed-Riyaz Jul 21, 2025
b0d9085
Merge branch 'Cloud-CV:master' into email-plan
Zahed-Riyaz Jul 30, 2025
8effb2d
Update email template
Zahed-Riyaz Jul 30, 2025
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
Prev Previous commit
Next Next commit
Handle undefined variables
  • Loading branch information
Zahed-Riyaz committed Jul 3, 2025
commit 6d8f6dc98552691278956cc52ad3002cf08fbd9e
2 changes: 1 addition & 1 deletion tests/unit/challenges/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -6139,7 +6139,7 @@ def test_request_challenge_approval_email_not_sent_when_submissions_incomplete(
"""Test that email is not sent when submission check fails"""
# Create a challenge phase without finished submissions
with self.settings(MEDIA_ROOT="/tmp/evalai"):
unfinished_phase = ChallengePhase.objects.create(
_unfinished_phase = ChallengePhase.objects.create(
name="Unfinished Phase",
description="Description for Unfinished Phase",
leaderboard_public=False,
Expand Down