Skip to content

Commit

Permalink
fix: CC testing and add Chesterfield
Browse files Browse the repository at this point in the history
  • Loading branch information
robbrad committed Nov 6, 2024
1 parent 59df4fd commit 73c468d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/behave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python-version: 3.12

- name: Install Dependencies
run: make install
run: make install-dev

- name: Lint JSON
run: jq empty uk_bin_collection/tests/input.json
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: pipx install poetry==${{ matrix.poetry-version }}

- name: Install Dependencies
run: make install
run: make install-dev

- name: Run Unit Tests
run: make unit-tests
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
run: pipx install poetry==${{ matrix.poetry-version }}

- name: Install Dependencies
run: make install
run: make install-dev

- name: Check Parity of Councils / input.json / Feature file
run: |
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
run: pipx install poetry==${{ matrix.poetry-version }}

- name: Install Dependencies
run: make install
run: make install-dev

- name: Run Integration Tests
env:
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## @CI_actions Installs the checked out version of the code to your poetry managed venv
install:
poetry install
poetry install --without dev

install-dev:
poetry install

## @CI_actions Runs code quality checks
pre-build: black unit-tests
Expand Down

0 comments on commit 73c468d

Please sign in to comment.