We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f2f570 commit 038581dCopy full SHA for 038581d
.github/workflows/python_package.yml
@@ -45,10 +45,11 @@ jobs:
45
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
46
- name: Test with pytest
47
run: pytest tests --ignore=tests/agents --ignore=tests/mcp/tools
48
- - name: Test agents with pytest
+ - name: Install package with agents requirements
49
run: |
50
- python -m pip install .[agents]
51
- pytest tests/agents tests/mcp/tools
+ python -m pip -r requirements-agents.txt
+ - name: Test agents with pytest
52
+ run: pytest tests/agents tests/mcp/tools
53
security:
54
name: Security Check
55
runs-on: ubuntu-latest
0 commit comments