Skip to content

Commit

Permalink
disabling GA smoke tests for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
glennga committed Oct 15, 2024
1 parent a7c3b93 commit b687b42
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/github-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:

- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."

- name: Verify toml files exist
uses: thebinaryfelix/[email protected]
Expand All @@ -29,11 +30,11 @@ jobs:
shell: "bash"
- name: Install repository with Poetry
run: |
poetry install
poetry install --with dev
- run: echo "🔥 Starting the core smoke tests (🤞 please don't break!)."
- name: Run agentc-core smoke tests
run: |
cd libs/agentc_core
poetry run pytest -m smoke -v
- run: echo "🍏 This job's status is ${{ job.status }}."
# - run: echo "🔥 Starting the core smoke tests (🤞 please don't break!)."
# - name: Run agentc-core smoke tests
# run: |
# cd libs/agentc_core
# poetry run pytest -m smoke -v
# - run: echo "🍏 This job's status is ${{ job.status }}."
Empty file removed libs/__init__.py
Empty file.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package-mode = false
python = "^3.12"

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.0"
pytest = "^7.4.4"
pre-commit = "^3.2.2"
pytest = "^8.3.2"

# All of our Agent Catalog packages.
agentc = { path = "libs/agentc", develop = true }
Expand All @@ -42,6 +42,9 @@ split-on-trailing-comma = false
markers = [
"smoke: marks tests for running on each git-push"
]
testpaths = [
"libs/agentc_core/tests"
]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit b687b42

Please sign in to comment.