Skip to content

Commit 73349c6

Browse files
fix: update hardcoded version strings in tests to 3.2.0
Tests had hardcoded "3.1.3" version checks that broke after the version bump to 3.2.0. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a535c7c commit 73349c6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/test_cli_paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_main_cli_version_output(self):
138138

139139
# Should show version
140140
output = result.stdout + result.stderr
141-
self.assertIn("3.1.3", output)
141+
self.assertIn("3.2.0", output)
142142

143143
except FileNotFoundError:
144144
# If skill-seekers is not installed, skip this test

tests/test_package_structure.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_cli_has_version(self):
2424
import skill_seekers.cli
2525

2626
assert hasattr(skill_seekers.cli, "__version__")
27-
assert skill_seekers.cli.__version__ == "3.1.3"
27+
assert skill_seekers.cli.__version__ == "3.2.0"
2828

2929
def test_cli_has_all(self):
3030
"""Test that skill_seekers.cli package has __all__ export list."""
@@ -88,7 +88,7 @@ def test_mcp_has_version(self):
8888
import skill_seekers.mcp
8989

9090
assert hasattr(skill_seekers.mcp, "__version__")
91-
assert skill_seekers.mcp.__version__ == "3.1.3"
91+
assert skill_seekers.mcp.__version__ == "3.2.0"
9292

9393
def test_mcp_has_all(self):
9494
"""Test that skill_seekers.mcp package has __all__ export list."""
@@ -108,7 +108,7 @@ def test_mcp_tools_has_version(self):
108108
import skill_seekers.mcp.tools
109109

110110
assert hasattr(skill_seekers.mcp.tools, "__version__")
111-
assert skill_seekers.mcp.tools.__version__ == "3.1.3"
111+
assert skill_seekers.mcp.tools.__version__ == "3.2.0"
112112

113113

114114
class TestPackageStructure:
@@ -212,7 +212,7 @@ def test_root_has_version(self):
212212
import skill_seekers
213213

214214
assert hasattr(skill_seekers, "__version__")
215-
assert skill_seekers.__version__ == "3.1.3"
215+
assert skill_seekers.__version__ == "3.2.0"
216216

217217
def test_root_has_metadata(self):
218218
"""Test that skill_seekers root package has metadata."""

0 commit comments

Comments
 (0)