forked from ansible/galaxy_ng
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No-Issue
- Loading branch information
Showing
3 changed files
with
92 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import logging | ||
import subprocess | ||
import tempfile | ||
import pytest | ||
|
||
from galaxykit.collections import get_all_collections, upload_artifact | ||
from galaxykit.namespaces import get_namespace | ||
from galaxykit.users import get_me | ||
from galaxykit.utils import wait_for_task | ||
from ..utils import ansible_galaxy, wait_for_url, CollectionInspector | ||
from ..constants import GALAXY_STAGE_ANSIBLE_PROFILES | ||
|
||
from jsonschema import validate as validate_json | ||
|
||
from ..schemas import ( | ||
schema_objectlist, | ||
) | ||
from ..utils.iqe_utils import galaxy_stage_ansible_user_cleanup | ||
from ..utils.rbac_utils import create_test_user | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
@pytest.mark.this | ||
def test_gw(galaxy_client): | ||
gc = galaxy_client("admin", gw_auth=True) | ||
logger.debug(gc) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters