From 1852e8c4398a0287e76a23238721455f27ec5082 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 10 Jan 2020 16:08:15 -0800 Subject: [PATCH] Revert both commits that remove py-tests Revert "Remove test dependency too" This reverts commit db12bb5db1db597439176483bb28f9cc5128a18d. Revert "Remove py-tests and pypi to speed up docker validation" This reverts commit 9aa77b3739b8a3073cb09382fa4cb224db99ad63. --- .drone.star | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.star b/.drone.star index d98da69..08ba27e 100644 --- a/.drone.star +++ b/.drone.star @@ -3,10 +3,10 @@ def main(ctx): pipelines = [] # Run tests - # pipelines += run_tests() + pipelines += run_tests() # Add pypi push pipeline - # pipelines += push_to_pypi(ctx) + pipelines += push_to_pypi(ctx) # Add docker push pipelines pipelines += push_to_docker(ctx) @@ -160,7 +160,7 @@ def push_to_docker(ctx): return [{ "kind": "pipeline", "name": "push to docker", - # "depends_on": ["tests"], + "depends_on": ["tests"], "workspace": get_workspace(), "trigger": { "event": ["tag", "push"],