Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
Signed-off-by: SSE4 <[email protected]>
  • Loading branch information
SSE4 committed Nov 23, 2020
1 parent 938ea75 commit 4103a66
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions conans/test/integration/toolchains/test_meson.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,16 @@ def get_meson_version():

@pytest.mark.toolchain
@pytest.mark.tool_meson
@unittest.skipUnless(which("meson") and get_meson_version() >= Version("0.56.0"),
"requires meson >= 0.56.0")
@unittest.skipUnless(get_meson_version() >= Version("0.56.0"), "requires meson >= 0.56.0")
class MesonToolchainTest(unittest.TestCase):
def setUp(self):
if get_meson_version() < Version("0.56.0"):
raise unittest.SkipTest("requires meson >= 0.56.0")

self.t = TestClient()

self.assertEqual(get_meson_version(), "0.56.0")

_conanfile_py = textwrap.dedent("""
from conans import ConanFile, MesonToolchain, tools
Expand Down

0 comments on commit 4103a66

Please sign in to comment.