diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-10-28 13:36:59 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-10-28 13:36:59 +0200 |
commit | 1c16f46f184a94cfa4aa28a56cf1014372ac7e51 (patch) | |
tree | 5043cac3f5693aaddb7eefc5c278537b092dcf0e /python | |
parent | f630c7926a45e1dfe16784f94f1efe00128b28ad (diff) | |
download | astra-1c16f46f184a94cfa4aa28a56cf1014372ac7e51.tar.gz astra-1c16f46f184a94cfa4aa28a56cf1014372ac7e51.tar.bz2 astra-1c16f46f184a94cfa4aa28a56cf1014372ac7e51.tar.xz astra-1c16f46f184a94cfa4aa28a56cf1014372ac7e51.zip |
Display version in astra.test()
Diffstat (limited to 'python')
-rw-r--r-- | python/astra/tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/python/astra/tests.py b/python/astra/tests.py index d438b08..19b42d0 100644 --- a/python/astra/tests.py +++ b/python/astra/tests.py @@ -79,15 +79,18 @@ def _basic_par3d_cuda(): def test_noCUDA(): """Perform a very basic functionality test, without CUDA""" - + + import astra + print("ASTRA Toolbox v%s" % (astra.__version__,)) ok = _basic_par2d() if not ok: raise RuntimeError("Test failed") def test_CUDA(): """Perform a very basic functionality test, including CUDA""" - + import astra + print("ASTRA Toolbox v%s" % (astra.__version__,)) print("Getting GPU info... ", end="") print(astra.get_gpu_info()) ok1 = _basic_par2d() |