You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2023/07/31 10:42:19 UTC

[libcloud] branch trunk updated (bae8e9607 -> b2be54b18)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


    from bae8e9607 Reformat code with the latest version of black library.
     new b48bb1eeb Ignore setuptools vulnerability over we don't have a direct control (we just use version which is installed in the end user environment).
     new b2be54b18 Fix codecov coverage upload CI step.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/main.yml | 1 +
 requirements-tests.txt     | 2 +-
 tox.ini                    | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)


[libcloud] 01/02: Ignore setuptools vulnerability over we don't have a direct control (we just use version which is installed in the end user environment).

Posted by to...@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 b48bb1eeb5e933f3896dfb30a0a300e0e86f1bf0
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Jul 31 12:32:47 2023 +0200

    Ignore setuptools vulnerability over we don't have a direct control (we
    just use version which is installed in the end user environment).
---
 .github/workflows/main.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 9fa8b0f1c..1fac3d4f5 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -293,6 +293,7 @@ jobs:
           # setuptools which we don't install or depend on directly
           ignore-vulns: |
             GHSA-r9hx-vwmv-q579
+            PYSEC-2022-43012
 
       - name: Cleanup
         run: |


[libcloud] 02/02: Fix codecov coverage upload CI step.

Posted by to...@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 b2be54b186990e04a7e10b8e40c6608eef4734a1
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Jul 31 12:41:18 2023 +0200

    Fix codecov coverage upload CI step.
---
 requirements-tests.txt | 2 +-
 tox.ini                | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/requirements-tests.txt b/requirements-tests.txt
index dbadc3a48..f19373912 100644
--- a/requirements-tests.txt
+++ b/requirements-tests.txt
@@ -1,4 +1,4 @@
-coverage==7.1.0; python_version >= '3.8'
+coverage==7.2.7; python_version >= '3.8'
 requests>=2.31.0
 requests_mock==1.11.0
 pytest==7.4.0
diff --git a/tox.ini b/tox.ini
index 6bd9c8dc1..233040495 100644
--- a/tox.ini
+++ b/tox.ini
@@ -341,6 +341,7 @@ setenv =
   CRYPTOGRAPHY_ALLOW_OPENSSL_102=1
 commands = cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
            coverage run --source=libcloud setup.py test
+           coverage xml
 
 [testenv:isort]
 deps =