From 6bf1ad5180586d3718b404b2330ccf790e373b88 Mon Sep 17 00:00:00 2001 From: Jan-Niclas Walther Date: Wed, 8 Jul 2020 18:45:30 +0200 Subject: [PATCH] Add missing colons --- .drone.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index f4d3c8d..ad55d42 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,9 @@ -kind pipeline -name default +kind: pipeline +name: default -steps -- name test - image python - commands +steps: +- name: test + image: python + commands: - pip install -r requirements.txt - - pytest --flake8 --isort \ No newline at end of file + - pytest --flake8 --isort