Skip to content

Commit 540242a

Browse files
committed
Add platform print
1 parent 8ec78d7 commit 540242a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/integration/test_logger.py

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import platform
16+
1517
from unittest import mock
1618

1719
from tests import REPORT_PORTAL_SERVICE
@@ -33,6 +35,12 @@ def test_launch_log(mock_client_init):
3335

3436
@mock.patch(REPORT_PORTAL_SERVICE)
3537
def test_binary_file_log(mock_client_init):
38+
print("--------------------")
39+
print(platform.system())
40+
print(platform.release())
41+
print(platform.version())
42+
print("--------------------")
43+
3644
result = utils.run_robot_tests(["examples/binary_file_log_as_text.robot"])
3745
assert result == 0 # the test successfully passed
3846

0 commit comments

Comments
 (0)