From 8ef75cc5970cd38202db180d5e2cd80e85b5b214 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Wed, 28 Jul 2021 11:19:31 -0700 Subject: [PATCH] Listing installed requirements explicitly after install --- .github/workflows/actions-migration.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions-migration.yml b/.github/workflows/actions-migration.yml index f82d06b8b2..d804828b8f 100644 --- a/.github/workflows/actions-migration.yml +++ b/.github/workflows/actions-migration.yml @@ -65,7 +65,9 @@ jobs: source venv/bin/activate echo "Before installing requirements" python3 -m pip list - sudo python3 -m pip install -q -r requirements.txt --ignore-installed simplejson + python3 -m pip install -q -r requirements.txt --ignore-installed simplejson + echo "After installing Python dependencies with the requirements.txt file" + python3 -m pip list - name: run validate run: |