Skip to content

Commit

Permalink
temp added debug to github action
Browse files Browse the repository at this point in the history
Signed-off-by: Trey <[email protected]>
  • Loading branch information
TreyWW committed Dec 29, 2024
1 parent d0beb39 commit 000cd9b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,30 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Debug Python Environment
env:
SECRET_KEY: "some!random!secret!key!use!online!generator!to!get"
URL: "127.0.0.1"
PROXY_IP: "localhost"
BRANCH: "debug"
DEBUG: "true"
DATABASE_TYPE: "sqlite3"
SITE_URL: "http://myfinances.example.com"
SITE_NAME: "myfinances"
run: |
source .venv/bin/activate
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
env:
SECRET_KEY: "some!random!secret!key!use!online!generator!to!get"
URL: "127.0.0.1"
PROXY_IP: "localhost"
BRANCH: "debug"
DEBUG: "true"
DATABASE_TYPE: "sqlite3"
SITE_URL: "http://myfinances.example.com"
SITE_NAME: "myfinances"
run: |
npm ci
npm run tailwind-build
Expand Down

0 comments on commit 000cd9b

Please sign in to comment.