Skip to content

Commit 948e49f

Browse files
committed
fix: install full package deps in runtimes test job
1 parent 32dea10 commit 948e49f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/runtimes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
python-version: "3.12"
2929

3030
- name: Install test deps
31-
run: pip install pytest pytest-asyncio cloudpickle aiohttp requests
31+
run: |
32+
pip install -e .
33+
pip install pytest pytest-asyncio cloudpickle
3234
3335
- name: Run task runner tests
34-
run: |
35-
pip install -e . --no-deps
36-
pytest tests/test_apps/test_tasks.py tests/test_apps/test_task_runner_http.py -q -o addopts=""
36+
run: pytest tests/test_apps/test_tasks.py tests/test_apps/test_task_runner_http.py -q -o addopts=""
3737

3838
build-task-cpu:
3939
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)