Skip to content

Commit

Permalink
adding badge + disabling CLI tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
glennga committed Oct 25, 2024
1 parent bf33d79 commit 04eaca1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/github-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ jobs:

- name: Run agentc-core tests
run: poetry run bash -c "cd libs/agentc_core && pytest -v"
- name: Run agentc-cli tests
run: poetry run bash -c "cd libs/agentc_cli && pytest -v"

# TODO (GLENN): For now, we are only running the core tests.
# We will run the CLI tests on our own machines until we can get these to run reliably.
# - name: Run agentc-cli tests
# run: poetry run bash -c "cd libs/agentc_cli && pytest -v"

- run: echo "🍏 This job's status is ${{ job.status }}."

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# agent-catalog
# agent-catalog (Couchbase Agent Catalog)
[![Couchbase Agent Catalog GitHub Actions](https://github.com/couchbaselabs/agent-catalog/actions/workflows/github-actions.yaml/badge.svg)](https://github.com/couchbaselabs/agent-catalog/actions/workflows/github-actions.yaml)

The mono-repo for the Couchbase Agent Catalog project.

Expand Down
2 changes: 1 addition & 1 deletion libs/agentc_cli/tests/test_click.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def test_find(tmp_path, cb_server_instance):
assert "3 result(s) returned from the catalog." in output


@pytest.mark.skip(reason="Currently kind of flaky? Other tests seem to work.")
@pytest.mark.smoke
def test_status(tmp_path, cb_server_instance):
runner = click.testing.CliRunner()
print("\n\n")
Expand Down

0 comments on commit 04eaca1

Please sign in to comment.