We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad1af52 commit 01e52a4Copy full SHA for 01e52a4
backends/arm/test/conftest.py
@@ -3,15 +3,12 @@
3
# This source code is licensed under the BSD-style license found in the
4
# LICENSE file in the root directory of this source tree.
5
6
-import logging
7
import os
8
import random
9
from typing import Any
10
11
import pytest
12
13
-logger = logging.getLogger(__name__)
14
-
15
"""
16
This file contains the pytest hooks, fixtures etc. for the Arm test suite.
17
@@ -97,7 +94,7 @@ def set_random_seed():
97
94
"ARM_TEST_SEED env variable must be integers or the string RANDOM"
98
95
)
99
96
100
- logger.info(f"ARM_TEST_SEED={seed}")
+ print(f" ARM_TEST_SEED={seed} ", end=" ")
101
102
103
# ==== End of Pytest fixtures =====
0 commit comments