From 5c9f266672f07a419ddae2ad9e3213c208a88aba Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 4 Mar 2019 10:23:19 +0100 Subject: [PATCH] Fix actions with tox (#21642) * Fix actions with tox * Update main.workflow --- .github/main.workflow | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/main.workflow b/.github/main.workflow index e1677572f5b..cec2d030b8a 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -5,12 +5,15 @@ workflow "Tox" { action "Python 3.7" { uses = "home-assistant/actions/py37-tox@master" + args = "-e lint,pylint,typing,cov" } action "Python 3.6" { uses = "home-assistant/actions/py36-tox@master" + args = "-e lint,pylint,typing" } action "Python 3.5" { uses = "home-assistant/actions/py35-tox@master" + args = "-e lint,pylint,typing" }