File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def test_cohere_model(model_type):
45
45
@pytest .mark .model_backend
46
46
def test_cohere_model_unexpected_argument ():
47
47
model_type = ModelType .COHERE_COMMAND_R
48
- model_config_dict = {"model_path" , "vicuna-7b-v1.5" }
48
+ model_config_dict = {"model_path" : "vicuna-7b-v1.5" }
49
49
50
50
with pytest .raises (
51
51
ValueError ,
Original file line number Diff line number Diff line change 11
11
# See the License for the specific language governing permissions and
12
12
# limitations under the License.
13
13
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
14
+ import pytest
15
+
14
16
from camel .runtime import RemoteHttpRuntime
15
17
from camel .toolkits import MathToolkit
16
18
17
19
20
+ @pytest .mark .skip (reason = "Cannot run this test without a running server." )
18
21
def test_remote_http_runtime ():
19
22
runtime = (
20
23
RemoteHttpRuntime ("localhost" )
You can’t perform that action at this time.
0 commit comments