pytest-api-framework-alpha 0.3.13__tar.gz → 0.3.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/PKG-INFO +1 -1
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/base_class.py +4 -4
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/pytest_api_framework_alpha.egg-info/PKG-INFO +1 -1
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/setup.py +1 -1
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/__init__.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/conftest.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/db/__init__.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/db/mysql_db.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/db/redis_db.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/exceptions.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/exit_code.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/extract.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/global_attribute.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/http_client.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/render_data.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/report.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/script.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/startapp.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/__init__.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/common.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/date_util.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/encrypt.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/lark_util.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/log_util.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/mock_util.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/yaml_util.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/validate.py +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/pytest_api_framework_alpha.egg-info/SOURCES.txt +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/pytest_api_framework_alpha.egg-info/dependency_links.txt +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/pytest_api_framework_alpha.egg-info/requires.txt +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/pytest_api_framework_alpha.egg-info/top_level.txt +0 -0
- {pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/setup.cfg +0 -0
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/base_class.py
RENAMED
|
@@ -162,7 +162,7 @@ class BaseTestCase(ExtendBaseTestCase):
|
|
|
162
162
|
:param new_base: 新的 base,如 'https://new.example.com'
|
|
163
163
|
:return: 替换后的 URL
|
|
164
164
|
"""
|
|
165
|
-
if url.startswith("http"):
|
|
165
|
+
if url.startswith("http") and "mce.sg" not in url:
|
|
166
166
|
return url
|
|
167
167
|
parsed_url = urlparse(url)
|
|
168
168
|
new_base_parsed = urlparse(new_base)
|
|
@@ -205,9 +205,9 @@ class BaseTestCase(ExtendBaseTestCase):
|
|
|
205
205
|
|
|
206
206
|
def regenerate_hot_wallet_for_psp(self, participant_code):
|
|
207
207
|
"""
|
|
208
|
-
|
|
208
|
+
|
|
209
209
|
:param participant_code: partner或end-user的code
|
|
210
|
-
:return:
|
|
210
|
+
:return:
|
|
211
211
|
"""
|
|
212
212
|
# 删除wallet_service中的钱包
|
|
213
213
|
self.logger.info(f"重置{participant_code}热钱包")
|
|
@@ -235,7 +235,7 @@ class BaseTestCase(ExtendBaseTestCase):
|
|
|
235
235
|
|
|
236
236
|
def regenerate_hot_wallet_for_buyer(self, partner_account, merchant_participant_code, buyer_participant_code):
|
|
237
237
|
"""
|
|
238
|
-
|
|
238
|
+
|
|
239
239
|
:param partner_account: partner账号
|
|
240
240
|
:param merchant_participant_code: merchant code
|
|
241
241
|
:param buyer_participant_code: buyer code
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/__init__.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/conftest.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/db/__init__.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/db/mysql_db.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/db/redis_db.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/exceptions.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/exit_code.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/extract.py
RENAMED
|
File without changes
|
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/http_client.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/render_data.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/startapp.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/__init__.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/common.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/date_util.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/encrypt.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/lark_util.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/log_util.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/mock_util.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/utils/yaml_util.py
RENAMED
|
File without changes
|
{pytest_api_framework_alpha-0.3.13 → pytest_api_framework_alpha-0.3.14}/framework/validate.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|