From 72b6e80d029a8a7fb154691be9bfa246548ad25f Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 4 Mar 2019 14:06:05 +0100 Subject: [PATCH] Better output of workflow --- .github/main.workflow | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index fed9496abd5867..1c8a94c89f87bd 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -33,11 +33,11 @@ action "Python 3.5 - tests" { action "Python 3.5 - lints" { uses = "home-assistant/actions/py35-tox@master" needs = ["Python 3.5 - tests"] - args = "-e lint,pylint -p all" + args = "-e lint,pylint -p auto --parallel-live" } action "Pyton 3.5 - typing,cov" { uses = "home-assistant/actions/py35-tox@master" - args = "-e typing,cov -p all" + args = "-e typing,cov -p auto --parallel-live" needs = ["Python 3.5 - lints"] }