fix: update some shields

Description:

Log:
This commit is contained in:
mikigo 2023-08-23 19:08:34 +08:00
parent 64aa98ca3b
commit e7a19c0495
11 changed files with 12 additions and 22 deletions

View File

@ -9,7 +9,7 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY
You should have received a copy of the GNU General Public License along with this program. If not, see<https://www.gnu.org/licenses/>.
# README & DOCS
Files: README.md README.zh_CN.md docs/*
Files: README.md README.zh_CN.md
Copyright: UnionTech Software Technology Co., Ltd.
License: CC-BY-4.0

View File

@ -336,4 +336,4 @@ This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
Public License instead of this License.

View File

@ -7,6 +7,9 @@
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/youqu)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/youqu)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/youqu)
[![Downloads](https://static.pepy.tech/badge/youqu)](https://pepy.tech/project/youqu)
[![Downloads](https://static.pepy.tech/badge/youqu/month)](https://pepy.tech/project/youqu)
[![Downloads](https://static.pepy.tech/badge/youqu/week)](https://pepy.tech/project/youqu)
English | [简体中文](README.zh_CN.md)

View File

@ -7,6 +7,9 @@
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/youqu)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/youqu)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/youqu)
[![Downloads](https://static.pepy.tech/badge/youqu)](https://pepy.tech/project/youqu)
[![Downloads](https://static.pepy.tech/badge/youqu/month)](https://pepy.tech/project/youqu)
[![Downloads](https://static.pepy.tech/badge/youqu/week)](https://pepy.tech/project/youqu)
[English](README.md) | 简体中文

View File

@ -381,7 +381,7 @@ class Manage:
start.rewrite()
def export_csv(self, parser=None, sub_parser_export_csv=None):
"""e导出 csv"""
"""导出 csv"""
sub_parser_export_csv.add_argument(
"-a", "--app", default="", help="应用名称deepin-music"
)

View File

@ -1,5 +1,3 @@
[config]
DESKTOP_CONFIG = ~/.config/deepin/dde-desktop/dde-desktop.conf
FTP_ADDRESS = 10.8.10.245

View File

@ -1,17 +1,4 @@
[config]
SMB_URL = SMB://10.8.10.214
SMB_IP = 10.8.10.214
FTP_ADDRESS = 10.8.10.214
SMB_REMOTE_URL = /run/user/1000/gvfs/smb-share:server=10.8.10.214,share=autotest/
SMB_ISO_URL = /run/user/1000/gvfs/smb-share:server=10.8.10.214,share=镜像共享
SFTP_TMP_URL = /run/user/1000/gvfs/sftp:host=10.8.10.214/tmp
DESKTOP_CONFIG = ~/.config/deepin/dde-desktop/dde-desktop.conf
RECENT_CONFIG_PATH = ~/.local/share/recently-used.xbel

View File

@ -37,7 +37,6 @@ if [ -d "${abs_check_path}" ] || [ -f "${abs_check_path}" ]; then
pylint --rcfile=setting/pylintrc.cfg ${abs_check_path} | \
pylint-json2html -o ${report_file}
echo -e "请查看扫描报告:\033[32m ${report_file}\033[0m\n"
# nohup browser ${report_file} >/dev/null 2>&1 &
else
echo -e "\033[41;30m <${abs_check_path}> 目录不存在 \033[0m\n"
fi

View File

@ -13,7 +13,7 @@ description = "deepin-autotest-framework"
readme = "youqu/README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]

View File

@ -20,4 +20,4 @@ filterwarnings =
console_output_style = count
testpaths = apps
minversion = 6.2.5
minversion = 6.2.5

View File

@ -116,7 +116,7 @@ class _GlobalConfig:
TMPDIR = global_cfg.get("TMPDIR", default="/tmp/tmpdir")
SYS_THEME = global_cfg.get("SYS_THEME", default="deepin")
OCR_SERVER_HOST = global_cfg.get("OCR_SERVER_HOST", default="localhost")
OPENCV_SERVER_HOST = global_cfg.get("OPENCV_SERVER_HOST", default="http://localhost")
OPENCV_SERVER_HOST = global_cfg.get("OPENCV_SERVER_HOST", default="localhost")
# [pms]
pms_cfg = GetCfg(GLOBAL_CONFIG_FILE_PATH, "pms")