Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
study0909
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
antares
study0909
Commits
70a0f1ad
Commit
70a0f1ad
authored
Sep 09, 2024
by
antares
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
202409091359Modified
parent
594db547
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
26 additions
and
26 deletions
+26
-26
apiAutoTestV3/common/basic_read_ini.py
+1
-1
apiAutoTestV3/common/db.py
+2
-2
apiAutoTestV3/common/read_excel.py
+5
-5
apiAutoTestV3/common/read_json.py
+1
-1
apiAutoTestV3/common/user_read_ini.py
+1
-1
apiAutoTestV3/request_method/request_method.py
+1
-1
apiAutoTestV3/test_case/test_demo/conftest.py
+2
-2
apiAutoTestV3/test_case/test_demo/test_bpm.py
+3
-3
apiAutoTestV3/test_case/test_lao_zhang/conftest.py
+2
-2
apiAutoTestV3/test_case/test_lao_zhang/test_bpm.py
+3
-3
apiAutoTestV3/test_case/test_lisi/conftest.py
+2
-2
apiAutoTestV3/test_case/test_lisi/test_bpm.py
+3
-3
No files found.
apiAutoTestV3/common/basic_read_ini.py
View file @
70a0f1ad
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
import
configparser
import
configparser
import
os
import
os
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
class
ReadIni
:
class
ReadIni
:
...
...
apiAutoTestV3/common/db.py
View file @
70a0f1ad
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
#
#
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pymysql
import
pymysql
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
from
apiAutoTest
_v
3.common.basic_read_ini
import
ReadIni
from
apiAutoTest
V
3.common.basic_read_ini
import
ReadIni
class
DB
:
class
DB
:
...
...
apiAutoTestV3/common/read_excel.py
View file @
70a0f1ad
...
@@ -9,11 +9,11 @@
...
@@ -9,11 +9,11 @@
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
openpyxl
import
openpyxl
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
from
apiAutoTest
_v
3.common.read_json
import
read_json
from
apiAutoTest
V
3.common.read_json
import
read_json
from
apiAutoTest
_v
3.common.user_read_ini
import
ReadIni
from
apiAutoTest
V
3.common.user_read_ini
import
ReadIni
from
apiAutoTest
_v
3.common.basic_read_ini
import
ReadIni
as
BasicIni
from
apiAutoTest
V
3.common.basic_read_ini
import
ReadIni
as
BasicIni
from
apiAutoTest
_v
3.data_config.settings
import
*
from
apiAutoTest
V
3.data_config.settings
import
*
class
ReadExcel
:
class
ReadExcel
:
...
...
apiAutoTestV3/common/read_json.py
View file @
70a0f1ad
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
#
#
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
json
import
json
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
def
read_json
(
file_path
):
def
read_json
(
file_path
):
...
...
apiAutoTestV3/common/user_read_ini.py
View file @
70a0f1ad
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
import
configparser
import
configparser
import
os
import
os
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
class
ReadIni
:
class
ReadIni
:
...
...
apiAutoTestV3/request_method/request_method.py
View file @
70a0f1ad
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
requests
import
requests
from
apiAutoTest
_v
3.common.basic_read_ini
import
ReadIni
from
apiAutoTest
V
3.common.basic_read_ini
import
ReadIni
class
RequestMethod
:
class
RequestMethod
:
...
...
apiAutoTestV3/test_case/test_demo/conftest.py
View file @
70a0f1ad
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
#
#
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pytest
import
pytest
from
apiAutoTest
_v
3.common.db
import
DB
from
apiAutoTest
V
3.common.db
import
DB
from
apiAutoTest
_v
3.request_method.request_method
import
RequestMethod
from
apiAutoTest
V
3.request_method.request_method
import
RequestMethod
# DB自定义固件
# DB自定义固件
...
...
apiAutoTestV3/test_case/test_demo/test_bpm.py
View file @
70a0f1ad
...
@@ -9,9 +9,9 @@
...
@@ -9,9 +9,9 @@
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pytest
import
pytest
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
from
apiAutoTest
_v
3.common.read_excel
import
ReadExcel
from
apiAutoTest
V
3.common.read_excel
import
ReadExcel
from
apiAutoTest
_v
3.test_case.test_demo
import
namespace
from
apiAutoTest
V
3.test_case.test_demo
import
namespace
excel
=
ReadExcel
(
namespace
)
excel
=
ReadExcel
(
namespace
)
...
...
apiAutoTestV3/test_case/test_lao_zhang/conftest.py
View file @
70a0f1ad
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
#
#
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pytest
import
pytest
from
apiAutoTest
_v
3.common.db
import
DB
from
apiAutoTest
V
3.common.db
import
DB
from
apiAutoTest
_v
3.request_method.request_method
import
RequestMethod
from
apiAutoTest
V
3.request_method.request_method
import
RequestMethod
# DB自定义固件
# DB自定义固件
...
...
apiAutoTestV3/test_case/test_lao_zhang/test_bpm.py
View file @
70a0f1ad
...
@@ -9,9 +9,9 @@
...
@@ -9,9 +9,9 @@
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pytest
import
pytest
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
from
apiAutoTest
_v
3.common.read_excel
import
ReadExcel
from
apiAutoTest
V
3.common.read_excel
import
ReadExcel
from
apiAutoTest
_v
3.test_case.test_lao_zhang
import
namespace
from
apiAutoTest
V
3.test_case.test_lao_zhang
import
namespace
excel
=
ReadExcel
(
namespace
)
excel
=
ReadExcel
(
namespace
)
...
...
apiAutoTestV3/test_case/test_lisi/conftest.py
View file @
70a0f1ad
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
#
#
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pytest
import
pytest
from
apiAutoTest
_v
3.common.db
import
DB
from
apiAutoTest
V
3.common.db
import
DB
from
apiAutoTest
_v
3.request_method.request_method
import
RequestMethod
from
apiAutoTest
V
3.request_method.request_method
import
RequestMethod
# DB自定义固件
# DB自定义固件
...
...
apiAutoTestV3/test_case/test_lisi/test_bpm.py
View file @
70a0f1ad
...
@@ -9,9 +9,9 @@
...
@@ -9,9 +9,9 @@
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
import
pytest
import
pytest
from
apiAutoTest
_v
3
import
log
from
apiAutoTest
V
3
import
log
from
apiAutoTest
_v
3.common.read_excel
import
ReadExcel
from
apiAutoTest
V
3.common.read_excel
import
ReadExcel
from
apiAutoTest
_v
3.test_case.test_lao_zhang
import
namespace
from
apiAutoTest
V
3.test_case.test_lao_zhang
import
namespace
excel
=
ReadExcel
(
namespace
)
excel
=
ReadExcel
(
namespace
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment