Skip to content

Commit 5112277

Browse files
committed
name steps of test_testdata
the steps of the test did not have any names. They are now grouped and the groups named.
1 parent fa7733e commit 5112277

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/tests.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,12 @@ jobs:
4949
- uses: ./.github/setup_evap
5050
with:
5151
start-db: true
52-
53-
- run: python manage.py reload_testdata --noinput
54-
- run: python manage.py dump_testdata
55-
- run: git diff --exit-code
52+
- name: Create new test_data.json
53+
run: |
54+
python manage.py reload_testdata --noinput
55+
python manage.py dump_testdata
56+
- name: Check if test_data.json changed
57+
run: git diff --exit-code
5658

5759
mypy:
5860
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)