diff --git a/tests/conftest.py b/tests/conftest.py index bb77449b..e28a3f10 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -68,6 +68,8 @@ def start_consul_instance(acl_master_token=None): (system, node, release, version, machine, processor) = platform.uname() if system == 'Darwin': postfix = 'osx' + elif machine == 'aarch64': + postfix = 'aarch64' else: postfix = 'linux64' bin = os.path.join(os.path.dirname(__file__), 'consul.'+postfix) diff --git a/tests/consul.aarch64 b/tests/consul.aarch64 new file mode 100755 index 00000000..77c5e518 Binary files /dev/null and b/tests/consul.aarch64 differ