File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 25
25
# *****************************************************************************
26
26
27
27
import os
28
+ import sys
28
29
import dpnp
29
30
import numpy
30
31
import pytest
@@ -52,9 +53,10 @@ def pytest_collection_modifyitems(config, items):
52
53
53
54
current_queue_is_cpu = dpnp .dpnp_queue_is_cpu ()
54
55
print ("" )
55
- print (f" DPNP: current queue is CPU: { current_queue_is_cpu } " )
56
- print (f" DPNP: version: { dpnp .__version__ } " )
57
- print (f"NumPy: version: { numpy .__version__ } " )
56
+ print (f"DPNP current queue is CPU: { current_queue_is_cpu } " )
57
+ print (f"DPNP version: { dpnp .__version__ } " )
58
+ print (f"NumPy version: { numpy .__version__ } " )
59
+ print (f"Python version: { sys .version } " )
58
60
print ("" )
59
61
if not current_queue_is_cpu or os .getenv ('DPNP_QUEUE_GPU' ) == '1' :
60
62
excluded_tests .extend (get_excluded_tests (test_exclude_file_gpu ))
You can’t perform that action at this time.
0 commit comments