zt-devops-cli 0.1.3__tar.gz → 0.1.4__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.
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/PKG-INFO +1 -1
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/pyproject.toml +1 -1
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/devops_cli/auth.py +2 -2
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/devops_cli/cli.py +1 -1
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/devops_cli/config.py +1 -1
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/zt_devops_cli.egg-info/PKG-INFO +1 -1
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/README.md +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/setup.cfg +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/devops_cli/__init__.py +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/devops_cli/api.py +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/zt_devops_cli.egg-info/SOURCES.txt +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/zt_devops_cli.egg-info/dependency_links.txt +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/zt_devops_cli.egg-info/entry_points.txt +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/zt_devops_cli.egg-info/requires.txt +0 -0
- {zt_devops_cli-0.1.3 → zt_devops_cli-0.1.4}/src/zt_devops_cli.egg-info/top_level.txt +0 -0
|
@@ -58,8 +58,8 @@ def get_auth_cookies() -> dict:
|
|
|
58
58
|
|
|
59
59
|
def open_login_page(page) -> bool:
|
|
60
60
|
"""自动登录 - 尝试读取环境变量自动填写账号密码"""
|
|
61
|
-
username = os.environ.get("
|
|
62
|
-
password = os.environ.get("
|
|
61
|
+
username = os.environ.get("ZT_SSO_USERNAME")
|
|
62
|
+
password = os.environ.get("ZT_SSO_PASSWORD")
|
|
63
63
|
|
|
64
64
|
if not username or not password:
|
|
65
65
|
return False
|
|
@@ -249,7 +249,7 @@ def list_sprint(ctx, project):
|
|
|
249
249
|
)
|
|
250
250
|
return
|
|
251
251
|
render_table(
|
|
252
|
-
headers=["迭代名称", "迭代ID", "开始时间", "结束时间", "迭代状态", "提测时间", "测试开始时间", "测试完成时间","验收完成", "
|
|
252
|
+
headers=["迭代名称", "迭代ID", "开始时间", "结束时间", "迭代状态", "提测时间", "测试开始时间", "测试完成时间","验收完成", "开发负责人", "测试负责人", "验收负责人"],
|
|
253
253
|
rows=[
|
|
254
254
|
[
|
|
255
255
|
s.get("title"),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|