File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ for TEST_FILE in ${TEST_LIST}; do
74
74
continue
75
75
fi
76
76
loginfo " Starting pytest ${TEST_SUITE} :${TEST_SHORTNAME} "
77
- python3 -m pytest $TESTFILE
77
+ python3 -m pytest $TEST_FILE
78
78
CODE=$?
79
79
if [[ $CODE -ne 0 ]]; then
80
80
logred " Test FAILED: ${TEST_SUITE} :${TEST_SHORTNAME} "
Original file line number Diff line number Diff line change 29
29
30
30
CLI_PYTHONPATH = f'{ os .path .dirname (os .path .abspath (__file__ ))} /../../client/python'
31
31
ROLE_ARN = 'arn:aws:iam::123456789012:role/my-role'
32
- POLARIS_HOST = os .getenv ('POLARIS_HOST' ) or 'polaris'
32
+ POLARIS_HOST = os .getenv ('POLARIS_HOST' , 'localhost' )
33
33
POLARIS_URL = f'http://{ POLARIS_HOST } :8181/api/catalog/v1/oauth/tokens'
34
34
35
35
def get_salt (length = 8 ) -> str :
@@ -379,7 +379,7 @@ def test_update_catalog():
379
379
380
380
def test_update_principal ():
381
381
"""
382
- Test updating properties on a principal
382
+ Test updating properties on a principal
383
383
"""
384
384
SALT = get_salt ()
385
385
sys .path .insert (0 , CLI_PYTHONPATH )
@@ -450,7 +450,7 @@ def test_update_principal():
450
450
451
451
def test_update_principal_role ():
452
452
"""
453
- Test updating properties on a principal_role
453
+ Test updating properties on a principal_role
454
454
"""
455
455
SALT = get_salt ()
456
456
sys .path .insert (0 , CLI_PYTHONPATH )
@@ -521,7 +521,7 @@ def test_update_principal_role():
521
521
522
522
def test_update_catalog_role ():
523
523
"""
524
- Test updating properties on a catalog_role
524
+ Test updating properties on a catalog_role
525
525
"""
526
526
SALT = get_salt ()
527
527
sys .path .insert (0 , CLI_PYTHONPATH )
You can’t perform that action at this time.
0 commit comments