Skip to content

Commit ffb3b04

Browse files
authored
print location of numpy package (#706)
1 parent 2968c21 commit ffb3b04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ def pytest_collection_modifyitems(config, items):
5454
current_queue_is_cpu = dpnp.dpnp_queue_is_cpu()
5555
print("")
5656
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__}")
57+
print(f"DPNP version: {dpnp.__version__}, location: {dpnp}")
58+
print(f"NumPy version: {numpy.__version__}, location: {numpy}")
5959
print(f"Python version: {sys.version}")
6060
print("")
6161
if not current_queue_is_cpu or os.getenv('DPNP_QUEUE_GPU') == '1':

0 commit comments

Comments
 (0)