Fix integration tests image cirros version, ignore doc line length

Zuul deploy contains newer version of cirros (0.6.3) than our
tests expects (0.6.2).

Error Line too long for doc files. Added D001 to ignore.

Change-Id: I972f4b7db19fb3852c3b9fe055ec514e78655d52
This commit is contained in:
Jan Jasek 2024-11-04 12:52:43 +01:00
parent d3c4ffe496
commit 1e8a032891
2 changed files with 6 additions and 4 deletions

View File

@ -46,8 +46,8 @@ panel_type=legacy
[image]
# http accessible image (string value)
panel_type=angular
http_image=http://download.cirros-cloud.net/0.6.2/cirros-0.6.2-x86_64-uec.tar.gz
images_list=cirros-0.6.2-x86_64-disk
http_image=http://download.cirros-cloud.net/0.6.3/cirros-0.6.3-x86_64-uec.tar.gz
images_list=cirros-0.6.3-x86_64-disk
[identity]
# Username to use for non-admin API requests. (string value)
@ -100,7 +100,7 @@ ssh_user=cirros
#available zone to launch instances
available_zone=nova
#image_name to launch instances
image_name=cirros-0.6.2-x86_64-disk (20.4 MB)
image_name=cirros-0.6.3-x86_64-disk (20.7 MB)
#flavor to launch instances
flavor=m1.tiny

View File

@ -241,7 +241,9 @@ max-line-length = 80
# Disable some doc8 checks:
# D000: Check RST validity
# - cannot handle "none" for code-block directive
ignore = D000
# D001: Line too long
# - Ignore since we allow lines in excess of 79 characters.
ignore = D000,D001
[pytest]