File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
uk_bin_collection/uk_bin_collection/councils Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -103,12 +103,13 @@ jobs:
103
103
104
104
- name : Install Dependencies
105
105
run : make install-dev
106
-
106
+
107
107
- name : Check Parity of Councils / input.json / Feature file
108
- run : |
109
- repo=${{ github.event.pull_request.head.repo.full_name || 'robbrad/UKBinCollectionData' }}
110
- branch=${{ github.event.pull_request.head.ref || 'master' }}
111
- make parity-check repo=$repo branch=$branch
108
+ env :
109
+ repo : ${{ github.event.pull_request.head.repo.full_name || 'robbrad/UKBinCollectionData' }}
110
+ branch : ${{ github.event.pull_request.head.ref || 'master' }}
111
+ run : make parity-check repo="$repo" branch="$branch"
112
+
112
113
integration-tests :
113
114
name : Run Integration Tests
114
115
needs : setup
@@ -151,4 +152,4 @@ jobs:
151
152
report_type : test_results
152
153
file : build/${{ matrix.python-version }}/integration-test-results/junit.xml
153
154
flags : integrationtestspr
154
- name : integration-tests-pr
155
+ name : integration-tests-pr
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ generate-test-map-test-results:
56
56
poetry run python uk_bin_collection/tests/generate_map_test_results.py build/integration-test-results/junit.xml > build/integration-test-results/test_results.json
57
57
58
58
parity-check :
59
- poetry run python uk_bin_collection/tests/council_feature_input_parity.py $(repo ) $(branch )
59
+ poetry run python uk_bin_collection/tests/council_feature_input_parity.py " $( repo) " " $( branch) "
60
60
61
61
unit-tests :
62
62
poetry run coverage erase
Original file line number Diff line number Diff line change 9
9
This module provides bin collection data for Cheshire East Council.
10
10
"""
11
11
12
-
13
12
class CouncilClass (AbstractGetBinDataClass ):
14
13
"""
15
14
A class to fetch and parse bin collection data for Cheshire East Council.
You can’t perform that action at this time.
0 commit comments