We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ec78d7 commit 540242aCopy full SHA for 540242a
tests/integration/test_logger.py
@@ -12,6 +12,8 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+import platform
16
+
17
from unittest import mock
18
19
from tests import REPORT_PORTAL_SERVICE
@@ -33,6 +35,12 @@ def test_launch_log(mock_client_init):
33
35
34
36
@mock.patch(REPORT_PORTAL_SERVICE)
37
def test_binary_file_log(mock_client_init):
38
+ print("--------------------")
39
+ print(platform.system())
40
+ print(platform.release())
41
+ print(platform.version())
42
43
44
result = utils.run_robot_tests(["examples/binary_file_log_as_text.robot"])
45
assert result == 0 # the test successfully passed
46
0 commit comments