正在显示
2 个修改的文件
包含
19 行增加
和
12 行删除
@@ -2,7 +2,6 @@ | @@ -2,7 +2,6 @@ | ||
2 | <project version="4"> | 2 | <project version="4"> |
3 | <component name="ChangeListManager"> | 3 | <component name="ChangeListManager"> |
4 | <list default="true" id="129454fc-5415-4c7e-9855-d0293355ede5" name="Default Changelist" comment="1.run文件调整"> | 4 | <list default="true" id="129454fc-5415-4c7e-9855-d0293355ede5" name="Default Changelist" comment="1.run文件调整"> |
5 | - <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> | ||
6 | <change beforePath="$PROJECT_DIR$/run.py" beforeDir="false" afterPath="$PROJECT_DIR$/run.py" afterDir="false" /> | 5 | <change beforePath="$PROJECT_DIR$/run.py" beforeDir="false" afterPath="$PROJECT_DIR$/run.py" afterDir="false" /> |
7 | </list> | 6 | </list> |
8 | <option name="SHOW_DIALOG" value="false" /> | 7 | <option name="SHOW_DIALOG" value="false" /> |
@@ -267,7 +266,7 @@ | @@ -267,7 +266,7 @@ | ||
267 | <workItem from="1689816981406" duration="4617000" /> | 266 | <workItem from="1689816981406" duration="4617000" /> |
268 | <workItem from="1689903460923" duration="538000" /> | 267 | <workItem from="1689903460923" duration="538000" /> |
269 | <workItem from="1690180441280" duration="3613000" /> | 268 | <workItem from="1690180441280" duration="3613000" /> |
270 | - <workItem from="1690248894302" duration="485000" /> | 269 | + <workItem from="1690248894302" duration="768000" /> |
271 | </task> | 270 | </task> |
272 | <task id="LOCAL-00001" summary="1.0.0 首次提交"> | 271 | <task id="LOCAL-00001" summary="1.0.0 首次提交"> |
273 | <created>1671544396986</created> | 272 | <created>1671544396986</created> |
@@ -451,7 +450,14 @@ | @@ -451,7 +450,14 @@ | ||
451 | <option name="project" value="LOCAL" /> | 450 | <option name="project" value="LOCAL" /> |
452 | <updated>1690193551926</updated> | 451 | <updated>1690193551926</updated> |
453 | </task> | 452 | </task> |
454 | - <option name="localTasksCounter" value="27" /> | 453 | + <task id="LOCAL-00027" summary="1.run文件调整"> |
454 | + <created>1690249405333</created> | ||
455 | + <option name="number" value="00027" /> | ||
456 | + <option name="presentableId" value="LOCAL-00027" /> | ||
457 | + <option name="project" value="LOCAL" /> | ||
458 | + <updated>1690249405333</updated> | ||
459 | + </task> | ||
460 | + <option name="localTasksCounter" value="28" /> | ||
455 | <servers /> | 461 | <servers /> |
456 | </component> | 462 | </component> |
457 | <component name="TypeScriptGeneratedFilesManager"> | 463 | <component name="TypeScriptGeneratedFilesManager"> |
@@ -638,17 +644,17 @@ | @@ -638,17 +644,17 @@ | ||
638 | </line-breakpoint> | 644 | </line-breakpoint> |
639 | <line-breakpoint suspend="THREAD" type="python-line"> | 645 | <line-breakpoint suspend="THREAD" type="python-line"> |
640 | <url>file://$PROJECT_DIR$/run.py</url> | 646 | <url>file://$PROJECT_DIR$/run.py</url> |
641 | - <line>72</line> | 647 | + <line>73</line> |
642 | <option name="timeStamp" value="101" /> | 648 | <option name="timeStamp" value="101" /> |
643 | </line-breakpoint> | 649 | </line-breakpoint> |
644 | <line-breakpoint suspend="THREAD" type="python-line"> | 650 | <line-breakpoint suspend="THREAD" type="python-line"> |
645 | <url>file://$PROJECT_DIR$/run.py</url> | 651 | <url>file://$PROJECT_DIR$/run.py</url> |
646 | - <line>68</line> | 652 | + <line>69</line> |
647 | <option name="timeStamp" value="102" /> | 653 | <option name="timeStamp" value="102" /> |
648 | </line-breakpoint> | 654 | </line-breakpoint> |
649 | <line-breakpoint suspend="THREAD" type="python-line"> | 655 | <line-breakpoint suspend="THREAD" type="python-line"> |
650 | <url>file://$PROJECT_DIR$/run.py</url> | 656 | <url>file://$PROJECT_DIR$/run.py</url> |
651 | - <line>66</line> | 657 | + <line>67</line> |
652 | <option name="timeStamp" value="103" /> | 658 | <option name="timeStamp" value="103" /> |
653 | </line-breakpoint> | 659 | </line-breakpoint> |
654 | <line-breakpoint suspend="THREAD" type="python-line"> | 660 | <line-breakpoint suspend="THREAD" type="python-line"> |
@@ -6,16 +6,17 @@ | @@ -6,16 +6,17 @@ | ||
6 | # @Software: PyCharm | 6 | # @Software: PyCharm |
7 | 7 | ||
8 | 8 | ||
9 | -import sys | ||
10 | -import os | ||
11 | -curPath = os.path.abspath(os.path.dirname(__file__)) | ||
12 | -rootPath = os.path.split(curPath)[0] | ||
13 | -sys.path.append(rootPath) | 9 | +# import sys |
10 | +# import os | ||
11 | +# curPath = os.path.abspath(os.path.dirname(__file__)) | ||
12 | +# rootPath = os.path.split(curPath)[0] | ||
13 | +# sys.path.append(rootPath) | ||
14 | 14 | ||
15 | import unittest | 15 | import unittest |
16 | -from common.handle_config import conf | ||
17 | from unittestreport import TestRunner | 16 | from unittestreport import TestRunner |
18 | 17 | ||
18 | +from common.handle_config import conf | ||
19 | + | ||
19 | from tools.function import runner_test | 20 | from tools.function import runner_test |
20 | from common.handle_path import TestCase_Path, Report_Path | 21 | from common.handle_path import TestCase_Path, Report_Path |
21 | # 登陆 | 22 | # 登陆 |
请
注册
或
登录
后发表评论