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 2abb68a commit bef7089
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- uses: browser-actions/setup-chrome@v1

- name: Create a .env file
run: cp .env.ci .env

Expand All @@ -41,15 +41,28 @@ jobs:

- name: Run isort
run: make isort-check

- name: Run black
run: make black-check

- name: Run tests
run: make pytest
continue-on-error: true

- name: Run tests
run: make pytest
continue-on-error: true

- name: Run tests
run: make pytest
continue-on-error: true

- name: Run tests
run: make pytest
continue-on-error: true

- name: Run BDD tests
run: make bdd

- name: Docker compose down
run: docker compose down
run: docker compose down
2 changes: 1 addition & 1 deletion end_of_month/test/test_end_of_month_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def _setup(self, db):
self.init_data = MonthlyFigureSetup()
self.init_data.setup_budget()
self.post_setup()

def post_setup(self):
pass

Expand Down

0 comments on commit bef7089

Please sign in to comment.