Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SamDudley committed Mar 25, 2024
1 parent 144c1af commit 491844c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -45,6 +46,20 @@ jobs:
- name: Run black
run: make black-check

- name: Run tests
run: make pytest
- name: Run tests
run: make pytest
- name: Run tests
run: make pytest
- name: Run tests
run: make pytest
- name: Run tests
run: make pytest
- name: Run tests
run: make pytest
- name: Run tests
run: make pytest
- name: Run tests
run: make pytest

Expand Down
1 change: 1 addition & 0 deletions end_of_month/test/test_end_of_month_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ def _setup(self, db):
def get_period_budget_total(self, period):
data_model = forecast_budget_view_model[period]
tot_q = data_model.objects.filter(financial_year=self.init_data.year_used)
print(period, data_model, self.init_data.year_used, tot_q, tot_q.budget)
return tot_q[0].budget

def get_current_budget_total(self):
Expand Down

0 comments on commit 491844c

Please sign in to comment.