File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525# *****************************************************************************
2626
2727import os
28+ import sys
2829import dpnp
2930import numpy
3031import pytest
@@ -52,9 +53,10 @@ def pytest_collection_modifyitems(config, items):
5253
5354 current_queue_is_cpu = dpnp .dpnp_queue_is_cpu ()
5455 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 } " )
5860 print ("" )
5961 if not current_queue_is_cpu or os .getenv ('DPNP_QUEUE_GPU' ) == '1' :
6062 excluded_tests .extend (get_excluded_tests (test_exclude_file_gpu ))
You can’t perform that action at this time.
0 commit comments