mirror of
https://github.com/httprunner/httprunner.git
synced 2026-08-28 19:47:14 +08:00
change log level of Variables
This commit is contained in:
+10
-6
@@ -1,15 +1,19 @@
|
|||||||
# Release History
|
# Release History
|
||||||
|
|
||||||
## 2.0.1 (2019.01.18)
|
## 2.0.2 (2019-01-21)
|
||||||
|
|
||||||
|
- change log level of "Variables & Output" to INFO
|
||||||
|
|
||||||
|
## 2.0.1 (2019-01-18)
|
||||||
|
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
|
||||||
- override current teststep variables with former testcase output variables;
|
- override current teststep variables with former testcase output variables
|
||||||
- make compatible with testcase name is empty;
|
- make compatible with testcase name is empty
|
||||||
- skip undefined variable when parsing string content;
|
- skip undefined variable when parsing string content
|
||||||
- add request method in report.
|
- add back request method in report
|
||||||
|
|
||||||
## 2.0.0 (2019.01.01)
|
## 2.0.0 (2019-01-01)
|
||||||
|
|
||||||
- Massive Refactor and Simplification
|
- Massive Refactor and Simplification
|
||||||
- Redesign testcase structure
|
- Redesign testcase structure
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
__title__ = 'HttpRunner'
|
__title__ = 'HttpRunner'
|
||||||
__description__ = 'One-stop solution for HTTP(S) testing.'
|
__description__ = 'One-stop solution for HTTP(S) testing.'
|
||||||
__url__ = 'https://github.com/HttpRunner/HttpRunner'
|
__url__ = 'https://github.com/HttpRunner/HttpRunner'
|
||||||
__version__ = '2.0.1'
|
__version__ = '2.0.2'
|
||||||
__author__ = 'debugtalk'
|
__author__ = 'debugtalk'
|
||||||
__author_email__ = 'mail@debugtalk.com'
|
__author_email__ = 'mail@debugtalk.com'
|
||||||
__license__ = 'Apache-2.0'
|
__license__ = 'Apache-2.0'
|
||||||
|
|||||||
+1
-1
@@ -512,7 +512,7 @@ def print_io(in_out):
|
|||||||
content += prepare_content("Out", _out)
|
content += prepare_content("Out", _out)
|
||||||
content += "-" * 56 + "\n"
|
content += "-" * 56 + "\n"
|
||||||
|
|
||||||
logger.log_debug(content)
|
logger.log_info(content)
|
||||||
|
|
||||||
|
|
||||||
def create_scaffold(project_name):
|
def create_scaffold(project_name):
|
||||||
|
|||||||
Reference in New Issue
Block a user