Skip to content

Commit db66017

Browse files
committed
Update python-test.yml
1 parent d830ee5 commit db66017

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/python-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
pip install -e ".[dev]"
21+
pip install -e .
22+
# Install test dependencies
23+
pip install pytest numpy
2224
2325
- name: Run unit tests
26+
env:
27+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
2428
run: |
25-
python -m unittest discover -s tests -p "*.py"
29+
python -m unittest discover -s tests -p "test_*.py" -v

0 commit comments

Comments
 (0)