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
2 changes: 1 addition & 1 deletion .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ jobs:
run: cd flo_ai && poetry build

- name: Run tests
run: cd flo_ai && poetry run pytest
run: cd flo_ai && poetry run pytest -m "not (integration)"

4 changes: 4 additions & 0 deletions flo_ai/pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[pytest]
markers =
integration: tests that make actual LLM API calls and require API keys
llm_tests: tests that make actual LLM API calls and require API keys
Loading