Skip to content
Snippets Groups Projects
Commit dfa2f128 authored by Igor Munkin's avatar Igor Munkin Committed by Yaroslav Lobankov
Browse files

test: disable app/fiber.test.lua on macOS/M1

Regular testing routine on macOS/M1 platforms will be enabled back in
the last patch of the series, but there are some failures unrelated to
the changes made within the previous commits. Hence it was decided to
add the skipcond unit to app/fiber.test.lua for now.

Relates to tarantool/tarantool-qa#308

NO_DOC=tests
NO_CHANGELOG=tests
parent ae0db476
No related branches found
No related tags found
No related merge requests found
......@@ -4,4 +4,8 @@ import platform
if platform.system() == 'OpenBSD':
self.skip = 1
# Disabled on macOS/M1 due to fail tarantool/tarantool-qa#308.
if platform.machine() == 'arm64' and platform.system() == 'Darwin':
self.skip = 1
# vim: set ft=python:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment