Skip to content

Commit

Permalink
feat(tests): fix ci test failures caused by the restructure
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiko Kuroda <[email protected]>
  • Loading branch information
akihikokuroda committed Feb 12, 2025
1 parent 6e127c0 commit da3aa19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maestro_check-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
poetry self add poetry-plugin-shell
- name: Install dependencies
run: |
cd src
cd maestro
poetry install
- name: Check schema
# Run from root to capture all projects - but poetry needs to run in maestro to pick up environment above
run: |
cd src
cd maestro
poetry run tools/check-schemas.sh
4 changes: 2 additions & 2 deletions .github/workflows/maestro_demotest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
poetry self add poetry-plugin-shell
- name: Install dependencies
run: |
cd src
cd maestro
poetry install
- name: Install Ollama
uses: pydantic/ollama-action@v3
Expand All @@ -38,7 +38,7 @@ jobs:
# TODO: generalise for other demos
- name: Run CrewAI workflow
run: |
cd src
cd maestro
poetry run demos/demos/activity-planner-crewai.ai/run.py
# TODO: Add a way to check the output of the demo
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maestro_pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
poetry self add poetry-plugin-shell
- name: Install dependencies
run: |
cd src
cd maestro
poetry install
- name: Run unit tests
run: |
cd src
cd maestro
poetry run pytest

0 comments on commit da3aa19

Please sign in to comment.