This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit a3eb0a274dc890d43df1ac71e2ada33ab0231cd1 Author: Tomaz Muraus <[email protected]> AuthorDate: Sun May 3 16:58:08 2020 +0200 Fix CMD line - tox expects environments to be passed a single and not multiple command line args. --- contrib/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/Dockerfile b/contrib/Dockerfile index 7fc4736..24edf3c 100644 --- a/contrib/Dockerfile +++ b/contrib/Dockerfile @@ -35,4 +35,4 @@ COPY . /libcloud WORKDIR /libcloud -CMD ["tox", "-e", "py3.5", "py3.6", "py3.7", "py3.8", "pypypy3", "lint"] +CMD ["tox", "-e", "lint,py3.5,py3.6,py3.7,py3.8,pypy3"]
