Skip to content

Commit d2e332a

Browse files
committed
BUG: fix github action?
1 parent 18c86c9 commit d2e332a

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
21-
run: make venv
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install requests
2224
- name: Run coverage test
23-
run: make test
25+
run: |
26+
python tests/test_function_coverage.py

0 commit comments

Comments
 (0)