-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarks.py
More file actions
43 lines (40 loc) · 1.27 KB
/
Copy pathmarks.py
File metadata and controls
43 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (c) 2023 - 2025, AG2ai, Inc., AG2ai open-source projects maintainers and core contributors
#
# SPDX-License-Identifier: Apache-2.0
#
# Portions derived from https://github.com/microsoft/autogen are under the MIT License.
# SPDX-License-Identifier: MIT
import pytest
credentials_all_llms = [
pytest.param(
"credentials_gpt_4o_mini",
marks=[pytest.mark.openai, pytest.mark.aux_neg_flag],
),
pytest.param(
"credentials_gemini_flash",
marks=[pytest.mark.gemini, pytest.mark.aux_neg_flag],
),
pytest.param(
"credentials_anthropic_claude_sonnet",
marks=[pytest.mark.anthropic, pytest.mark.aux_neg_flag],
),
]
credentials_browser_use = [
pytest.param(
"credentials_gpt_4o_mini",
marks=[pytest.mark.openai, pytest.mark.aux_neg_flag],
),
pytest.param(
"credentials_anthropic_claude_sonnet",
marks=[pytest.mark.anthropic, pytest.mark.aux_neg_flag],
),
pytest.param(
"credentials_gemini_flash_exp",
marks=[pytest.mark.gemini, pytest.mark.aux_neg_flag],
),
# Deeseek currently does not work too well with the browser-use
pytest.param(
"credentials_deepseek_chat",
marks=[pytest.mark.deepseek, pytest.mark.aux_neg_flag],
),
]