From notifications-return-16390-archive-asf-public=cust-asf.ponee.io@libcloud.apache.org Sat Nov 30 19:46:22 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 60A66180675 for ; Sat, 30 Nov 2019 20:46:22 +0100 (CET) Received: (qmail 13825 invoked by uid 500); 30 Nov 2019 19:46:21 -0000 Mailing-List: contact notifications-help@libcloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@libcloud.apache.org Delivered-To: mailing list notifications@libcloud.apache.org Received: (qmail 13805 invoked by uid 500); 30 Nov 2019 19:46:21 -0000 Delivered-To: apmail-libcloud-commits@libcloud.apache.org Received: (qmail 13794 invoked by uid 99); 30 Nov 2019 19:46:21 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Nov 2019 19:46:21 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 5D9F88B692; Sat, 30 Nov 2019 19:46:21 +0000 (UTC) Date: Sat, 30 Nov 2019 19:46:23 +0000 To: "commits@libcloud.apache.org" Subject: [libcloud] 02/02: Add additional checks which verify packe is correctly installed. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: tomaz@apache.org In-Reply-To: <157514318113.5199.11979370775989264814@gitbox.apache.org> References: <157514318113.5199.11979370775989264814@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: libcloud X-Git-Refname: refs/heads/trunk X-Git-Reftype: branch X-Git-Rev: a1d071bbf6e8ba51532afd85d550bf21dd293e45 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20191130194621.5D9F88B692@gitbox.apache.org> 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 a1d071bbf6e8ba51532afd85d550bf21dd293e45 Author: Tomaz Muraus AuthorDate: Sat Nov 30 20:45:29 2019 +0100 Add additional checks which verify packe is correctly installed. --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 3fc094f..a0e7abd 100644 --- a/tox.ini +++ b/tox.ini @@ -40,7 +40,9 @@ deps = commands = bash -c "pip show requests && exit 1 || exit 0" bash -c "pip show typing && exit 1 || exit 0" bash -c "pip show enum34 && exit 1 || exit 0" + bash -c "pip show apache-libcloud || exit 0" python setup.py install + pip show apache-libcloud [testenv:py3.7-dist] # Verify library installs without any dependencies @@ -52,8 +54,9 @@ deps = # Ensure those packages are not installed. If they are, it indicates unclean # environment so those checks won't work correctly commands = bash -c "pip show requests && exit 1 || exit 0" + bash -c "pip show apache-libcloud || exit 0" python setup.py install - + pip show apache-libcloud [testenv:docs] deps = pysphere