You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by cl...@apache.org on 2021/03/21 04:05:47 UTC

[libcloud] branch storage-azure-integration-tests updated (13721ca -> e24f58e)

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

clewolff pushed a change to branch storage-azure-integration-tests
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


 discard 13721ca  Ensure integration tests use non-mock connection
 discard 6f2518c  Add integration tests for Azure Storage driver
     add 8a3427f  Namespace compute integration tests
     add e24f58e  Add integration tests for Azure Storage driver

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (13721ca)
            \
             N -- N -- N   refs/heads/storage-azure-integration-tests (e24f58e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/main.yml                         |  39 ++-
 integration/README.rst                             |  20 --
 integration/compute/README.rst                     |  20 ++
 integration/{driver => compute}/__init__.py        |   0
 integration/{ => compute}/__main__.py              |   4 +-
 integration/{ => compute}/api/__init__.py          |   0
 integration/{ => compute}/api/__main__.py          |   0
 integration/{ => compute}/api/data.py              |   0
 integration/{ => compute}/api/routes.py            |   4 +-
 integration/{ => compute}/api/util.py              |   2 +-
 integration/{ => compute}/config.py                |   0
 .../compute/driver}/__init__.py                    |   0
 integration/{ => compute}/driver/test.py           |   0
 integration/{ => compute}/requirements.txt         |   0
 .../storage}/__init__.py                           |   0
 integration/{api => storage}/__main__.py           |   9 +-
 {libcloud/test => integration}/storage/base.py     |  29 --
 integration/storage/requirements.txt               |   2 +
 .../storage/test_azure_blobs_integration.py        |   2 +-
 libcloud/test/storage/base.py                      | 328 ---------------------
 requirements-tests.txt                             |   1 -
 tox.ini                                            |  11 +-
 22 files changed, 80 insertions(+), 391 deletions(-)
 delete mode 100644 integration/README.rst
 create mode 100644 integration/compute/README.rst
 rename integration/{driver => compute}/__init__.py (100%)
 rename integration/{ => compute}/__main__.py (94%)
 rename integration/{ => compute}/api/__init__.py (100%)
 copy integration/{ => compute}/api/__main__.py (100%)
 rename integration/{ => compute}/api/data.py (100%)
 rename integration/{ => compute}/api/routes.py (90%)
 rename integration/{ => compute}/api/util.py (95%)
 rename integration/{ => compute}/config.py (100%)
 copy {pylint_plugins => integration/compute/driver}/__init__.py (100%)
 rename integration/{ => compute}/driver/test.py (100%)
 rename integration/{ => compute}/requirements.txt (100%)
 copy {pylint_plugins => integration/storage}/__init__.py (100%)
 rename integration/{api => storage}/__main__.py (81%)
 copy {libcloud/test => integration}/storage/base.py (93%)
 create mode 100644 integration/storage/requirements.txt
 rename {libcloud/test => integration}/storage/test_azure_blobs_integration.py (96%)