Skip to content

Commit

Permalink
show version
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Aug 12, 2024
1 parent c4dd93d commit b518135
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unittests/make_tools/test_replacer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
from spinn_utilities.config_holder import set_config
from spinn_utilities.make_tools.replacer import Replacer
from spinn_utilities.make_tools.file_converter import TOKEN
from spinn_utilities._version import __version__ as version

PATH = os.path.dirname(os.path.abspath(__file__))

Expand Down Expand Up @@ -105,7 +106,7 @@ def test_listdir(self):
m = sys.modules[Replacer.__module__].__file__
d = os.path.dirname(m)
fs = os.listdir(d)
raise Exception(str(d) + str(fs))
raise Exception(version + " " + str(d) + str(fs))

def near_equals(self, a, b):
diff = a - b
Expand Down

0 comments on commit b518135

Please sign in to comment.