Skip to content

Commit

Permalink
test with ANY_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 10, 2024
1 parent a581aaf commit 2a1816f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion unittests/model_tests/test_abstract_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# limitations under the License.

from spinn_utilities.config_holder import set_config
from spinn_machine.version import ANY_VERSION
from spinnman.processes.abstract_multi_connection_process import (
AbstractMultiConnectionProcess)
from spinnman.messages.scp.impl import ReadMemory
Expand Down Expand Up @@ -40,7 +41,7 @@ def receive_scp_response(self, timeout=1.0):

def test_error_print():
unittest_setup()
set_config("Machine", "version", 5)
set_config("Machine", "version", ANY_VERSION)
connection = MockConnection(0, 0)
process = MockProcess(RoundRobinConnectionSelector([connection]))
with pytest.raises(SpinnmanGenericProcessException):
Expand Down
3 changes: 2 additions & 1 deletion unittests/test_transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import unittest
import struct
from spinn_utilities.config_holder import set_config
from spinn_machine.version import ANY_VERSION
from spinnman.config_setup import unittest_setup
from spinnman.data import SpiNNManDataView
from spinnman.data.spinnman_data_writer import SpiNNManDataWriter
Expand Down Expand Up @@ -83,7 +84,7 @@ def test_boot_board(self):
trans._boot_board()

def test_set_watch_dog(self):
set_config("Machine", "version", 5)
set_config("Machine", "version", ANY_VERSION)
connections = []
connections.append(SCAMPConnection(remote_host=None))
tx = MockExtendedTransceiver()
Expand Down

0 comments on commit 2a1816f

Please sign in to comment.