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 2022/09/02 18:56:01 UTC

[libcloud] branch pip_audit_gha_check updated (786c5ec01 -> a3e8277ee)

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

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


    from 786c5ec01 Merge branch 'trunk' into pip_audit_gha_check
     new 50d348b41 Add cleanup step.
     new 411048b16 Update ignored directories.
     new a3e8277ee Merge branch 'pip_audit_gha_check' of http://gitbox.apache.org/repos/asf/libcloud into pip_audit_gha_check

The 3 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 +
 scripts/check_asf_license_headers.py | 1 +
 2 files changed, 2 insertions(+)


[libcloud] 03/03: Merge branch 'pip_audit_gha_check' of http://gitbox.apache.org/repos/asf/libcloud into pip_audit_gha_check

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a3e8277ee27eef295e769dec831a02e0176c9ea0
Merge: 411048b16 786c5ec01
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Sep 2 20:55:55 2022 +0200

    Merge branch 'pip_audit_gha_check' of http://gitbox.apache.org/repos/asf/libcloud into pip_audit_gha_check

 .github/workflows/codeql-analysis.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


[libcloud] 02/03: Update ignored directories.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 411048b16bc09793aa6b0f3953c2fa4cc4b71456
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Sep 2 20:55:38 2022 +0200

    Update ignored directories.
---
 scripts/check_asf_license_headers.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/check_asf_license_headers.py b/scripts/check_asf_license_headers.py
index 961826b47..e8df041b1 100755
--- a/scripts/check_asf_license_headers.py
+++ b/scripts/check_asf_license_headers.py
@@ -37,6 +37,7 @@ IGNORED_PATHS = [
     'build',
     'dist',
     'docs',
+    'venv/',
 
     'libcloud/utils/iso8601.py'
 ]


[libcloud] 01/03: Add cleanup step.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 50d348b41e02dc643531238ee5eebb2ec1538697
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Sep 2 20:55:06 2022 +0200

    Add cleanup step.
---
 .github/workflows/main.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index cfc763253..a5ee8534a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -214,6 +214,7 @@ jobs:
 
       - name: Run Checks
         run: |
+          rm -rf venv/ || true
           script -e -c "tox -e black-check,checks,import-timings,lint,pylint"
 
   micro-benchmarks: