From 8b1be5beaccd388807d3cf43400c57d4bfda747d Mon Sep 17 00:00:00 2001 From: farhan Date: Wed, 13 Sep 2023 18:09:58 +0500 Subject: [PATCH] chore: test --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a3481e0c..e755d1f04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,11 +26,19 @@ jobs: - name: Install Dependencies run: pip install -r requirements/ci.txt + - name: Run tox + run: | + # Run tox and store the envsitepackagesdir in a variable + ENV_SITE_PACKAGES_DIR=$(tox -l | xargs -I {} tox -e {} -- echo {envsitepackagesdir}) + + # Print the value of envsitepackagesdir + echo "envsitepackagesdir: $ENV_SITE_PACKAGES_DIR" + - name: Print Workflow Information run: | echo "Running tests with Python version: ${{ matrix.python-version }}" echo "Running tox environment: ${{ matrix.toxenv }}" - echo "ls -a" + echo "ls -al" ls -al echo "ls -al .tox/django32/lib/python3.8/site-packages" ls -al .tox/django32/lib/python3.8/site-packages