From fb08a64e884a783bdc5b9902dfdeccc5ad2871a6 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Tue, 15 Mar 2022 16:19:35 +1300 Subject: [PATCH] Name is required --- .drone.jsonnet | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 9c75e98..dafc740 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -30,7 +30,9 @@ local email_notification() = }; local test_distro(distribution) = - { volumes: [{ name: 'dockersock', path: '/var/run' },], + { + name: 'Molecule test on %(distribution)s' % { distribution: distribution }, + volumes: [{ name: 'dockersock', path: '/var/run' },], image: 'guisea/ansible-molecule:latest', commands: [ 'sleep 10', // give docker enough time to start