Skip to content

Commit 95af6f4

Browse files
authored
fix pipeline (#1222)
Co-authored-by: liuxukun2000 <[email protected]>
1 parent 19530bf commit 95af6f4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

test/models/test_cohere_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_cohere_model(model_type):
4545
@pytest.mark.model_backend
4646
def test_cohere_model_unexpected_argument():
4747
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"}
4949

5050
with pytest.raises(
5151
ValueError,

test/runtime/test_remote_http_runtime.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
14+
import pytest
15+
1416
from camel.runtime import RemoteHttpRuntime
1517
from camel.toolkits import MathToolkit
1618

1719

20+
@pytest.mark.skip(reason="Cannot run this test without a running server.")
1821
def test_remote_http_runtime():
1922
runtime = (
2023
RemoteHttpRuntime("localhost")

0 commit comments

Comments
 (0)