django_command/django_check/django_createcachetable: add return value version (#9063)

* add return value version

* add changelog frag

* reformat yaml
This commit is contained in:
Alexei Znamensky 2024-10-27 21:36:38 +13:00 committed by GitHub
commit 107df41d9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 104 additions and 35 deletions

View file

@ -7,11 +7,18 @@
- id: success
input:
settings: whatever.settings
output:
version: "5.1.2"
mocks:
run_command:
- command: [/testbin/python, -m, django, check, --no-color, --settings=whatever.settings]
- command: [/testbin/python, -m, django, --version]
environ: &env-def {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
rc: 0
out: "5.1.2\n"
err: ""
- command: [/testbin/python, -m, django, check, --no-color, --settings=whatever.settings]
environ: *env-def
rc: 0
out: "whatever\n"
err: ""
- id: multiple_databases
@ -20,8 +27,15 @@
database:
- abc
- def
output:
version: "5.1.2"
mocks:
run_command:
- command: [/testbin/python, -m, django, --version]
environ: *env-def
rc: 0
out: "5.1.2\n"
err: ""
- command: [/testbin/python, -m, django, check, --no-color, --settings=whatever.settings, --database, abc, --database, def]
environ: *env-def
rc: 0

View file

@ -15,9 +15,14 @@
settings: whatever.settings
mocks:
run_command:
- command: [/testbin/python, -m, django, check, --no-color, --settings=whatever.settings, babaloo, yaba, daba, doo]
- command: [/testbin/python, -m, django, --version]
environ: &env-def {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
rc: 0
out: "5.1.2\n"
err: ""
- command: [/testbin/python, -m, django, check, --no-color, --settings=whatever.settings, babaloo, yaba, daba, doo]
environ: *env-def
rc: 0
out: "whatever\n"
err: ""
- id: command_fail
@ -33,6 +38,11 @@
failed: true
mocks:
run_command:
- command: [/testbin/python, -m, django, --version]
environ: *env-def
rc: 0
out: "5.1.2\n"
err: ""
- command: [/testbin/python, -m, django, check, --no-color, --settings=whatever.settings, babaloo, yaba, daba, doo]
environ: *env-def
rc: 1

View file

@ -9,8 +9,13 @@
settings: whatever.settings
mocks:
run_command:
- command: [/testbin/python, -m, django, --version]
environ: &env-def {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
rc: 0
out: "5.1.2\n"
err: ""
- command: [/testbin/python, -m, django, createcachetable, --no-color, --settings=whatever.settings, --noinput, --database=default]
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
environ: *env-def
rc: 0
out: "whatever\n"
err: ""