We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d830ee5 commit db66017Copy full SHA for db66017
.github/workflows/python-test.yml
@@ -18,8 +18,12 @@ jobs:
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
- pip install -e ".[dev]"
+ pip install -e .
22
+ # Install test dependencies
23
+ pip install pytest numpy
24
25
- name: Run unit tests
26
+ env:
27
+ OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
28
- python -m unittest discover -s tests -p "*.py"
29
+ python -m unittest discover -s tests -p "test_*.py" -v
0 commit comments