From ba6757ad11202bdcda5b421a512bf33abb300d8a Mon Sep 17 00:00:00 2001 From: Ankit Kumar Pandey Date: Sat, 22 Apr 2023 18:01:44 +0530 Subject: [PATCH] add CI for pip check inside venv --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2591b16a0..c901ada03 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -308,6 +308,11 @@ jobs: run: | target/release/rustpython -m ensurepip target/release/rustpython -c "import pip" + - if: runner.os != 'Windows' + name: Check if pip inside venv is functional + run: | + target/release/rustpython -m venv testvenv + testvenv/bin/rustpython -m pip install wheel - name: Check whats_left is not broken run: python -I whats_left.py