File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ classifiers=[
2020 " Programming Language :: Python :: 3.11" ,
2121]
2222
23- dependencies = []
23+ dependencies = [" pytest " ]
2424
2525[tool .hatch .build .targets .wheel ]
2626only-include = [" src/fms_acceleration_mcp" ]
Original file line number Diff line number Diff line change 1717
1818# Third Party
1919from fms_acceleration .utils import instantiate_framework , read_configuration
20+ import pytest
2021
2122# First Party
2223from fms_acceleration_mcp import MCPAccelerationPlugin
2627CONFIG_PATH = os .path .join (DIRNAME , "../configs/mcp.yaml" )
2728
2829
30+ @pytest .mark .skipif (
31+ not pytest .importorskip ("mamba_ssm" , reason = "mamba_ssm is not installed" ),
32+ reason = "mamba_ssm is not installed" ,
33+ )
2934def test_framework_installs_mcp_plugin ():
3035 with instantiate_framework (
3136 read_configuration (CONFIG_PATH ), require_packages_check = False
You can’t perform that action at this time.
0 commit comments