From 2a50cc697da97008aa8aae7452b01c54c5e99bd9 Mon Sep 17 00:00:00 2001 From: leehk Date: Sun, 13 Apr 2025 19:25:33 +0800 Subject: [PATCH] install pipenv on host --- .github/workflows/develop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 460450a..1b45135 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -120,7 +120,7 @@ jobs: run: free -h - name: Run Pytest directly run: | - cd ./app/backend/ && pipenv install && pipenv run python -m pytest --disable-warnings + pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pipenv && cd ./app/backend/ && pipenv install && pipenv run python -m pytest --disable-warnings - name: Pytest run: docker exec backend pipenv run python -m pytest -v # - name: Flake8