Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
- name: Run pytest
run: pytest

- name: Failure log
if: failure()
run: echo "1つ前のステップは失敗しました!"

- name: Print secrets
run: echo "TEST_API_KEY -> ${{secrets.TEST_API_KEY}}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ def test_tools_list_contains_current_time(agent_module):
# Find tool by name
names = [tool.name for tool in tools]
assert "Current Time" in names, f"Tool 'Current Time' not found in {names}"
# assert "Current" in names, (
# f"Tool 'Current Time' not found in {names}"
# ) # pytest fails can also confirm on Github Actions


def test_module_import_with_missing_llm(monkeypatch):
Expand Down