Skip to content

Commit 6b68fb9

Browse files
committed
Merge branch 'v9999.99.9' of https://github.com/edwardtfn/NSPanel-Easy into v9999.99.9
2 parents 2205fbe + 9d25f35 commit 6b68fb9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.test/unit/test_versioning.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def test_version_components_valid(self):
6262
# Year should be 4 digits (allow test value 9999)
6363
assert 1000 <= year <= 9999, f"Year must be 4 digits: {year}"
6464

65-
# Month should be 1-99 (allow test value 99)
66-
assert 1 <= month <= 99, f"Month must be 1-99: {month}"
65+
# Month should be 1-12 (or allow 99 for test versions)
66+
assert (1 <= month <= 12) or month == 99, f"Month must be 1-12 (or 99 for test): {month}"
6767

6868
# Sequence should be positive
6969
assert sequence >= 1, f"Sequence must be positive: {sequence}"

.test/unit/test_versioning_advanced.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ def test_workflow_prevents_infinite_loops(self):
213213

214214
def test_workflow_commit_message_has_skip_marker(self):
215215
"""Test workflow ensures commits have skip marker"""
216-
content = self.WORKFLOW_PATH.read_text()
217216
script_path = Path("/home/jailuser/git/versioning/bump_version.sh")
218217
script_content = script_path.read_text()
219218

0 commit comments

Comments
 (0)