From d0beb3959ec6d6ba912ffbe552e3c7cc50ea5106 Mon Sep 17 00:00:00 2001 From: Trey <73353716+TreyWW@users.noreply.github.com> Date: Sun, 29 Dec 2024 14:36:10 +0000 Subject: [PATCH] temp added debug to github action Signed-off-by: Trey <73353716+TreyWW@users.noreply.github.com> --- .github/workflows/tests.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1facc0ac5..b9f8cb483 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,14 +35,12 @@ jobs: - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root - - name: Install latest setuptools + - name: Debug Python Environment run: | source .venv/bin/activate - pip install setuptools - - name: Install latest Django - run: | - source .venv/bin/activate - pip install Django + python -c "import pkgutil; print([module.name for module in pkgutil.iter_modules()])" + python -c "import core; print(core.__file__)" + python -c "import billing; print(billing.__file__)" - name: Install dependencies and build frontend run: | npm ci