Skip to content

Commit

Permalink
test: use verbose flag in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Labourier <mathieu.labourier@vates.tech>
  • Loading branch information
Millefeuille42 committed Feb 17, 2025
1 parent c98c5cd commit e4cb0e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ def start_http_server(backing_path):
'--disk',
backing_path,
'--port',
HTTP_PORT
HTTP_PORT,
'--verbose'
]

return subprocess.Popen(
Expand All @@ -153,7 +154,8 @@ def start_nbd_server(volume_name, device_size):
'--urls',
'http://{}:{}'.format(socket.gethostname(), HTTP_PORT),
'--device-size',
str(device_size)
str(device_size),
'--verbose'
]

nbd_server = subprocess.Popen(
Expand Down

0 comments on commit e4cb0e8

Please sign in to comment.