Better output of workflow

This commit is contained in:
Pascal Vizeli 2019-03-04 14:06:05 +01:00 committed by GitHub
parent eb1d7be67c
commit 72b6e80d02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]
}