Skip to content
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 src/bloomy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class ScorecardItem(BloomyBaseModel):
measurable_id: int
accountable_user_id: int
title: str
target: float
target: OptionalFloat = None # API may return null Target for unset goals
value: float | None = None
week: str # Changed from int to str to handle "2024-W25" format
week_id: int
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_goals.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
GoalStatus,
)

MEETING_ID = 324926
MEETING_ID = 327249 # Scorecard Test Meeting (was 324926, access revoked)


@pytest.fixture(scope="module")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_headlines.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from bloomy import AsyncClient, Client
from bloomy.models import HeadlineDetails, HeadlineInfo, HeadlineListItem

MEETING_ID = 324926
MEETING_ID = 327249 # Scorecard Test Meeting (was 324926, access revoked)

pytestmark = pytest.mark.integration

Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from bloomy import AsyncClient, Client
from bloomy.models import CreatedIssue, IssueDetails, IssueListItem

MEETING_ID = 324926
MEETING_ID = 327249 # Scorecard Test Meeting (was 324926, access revoked)

pytestmark = pytest.mark.integration

Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_todos.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from bloomy import AsyncClient, Client
from bloomy.models import Todo

MEETING_ID = 324926
MEETING_ID = 327249 # Scorecard Test Meeting (was 324926, access revoked)


@pytest.fixture(scope="module")
Expand Down
Loading