From 8bb48893bedc3e49db30d78cd8dbd537bd727a34 Mon Sep 17 00:00:00 2001 From: clanmills Date: Tue, 19 May 2020 18:38:49 +0100 Subject: [PATCH] Add guard in test_issue_547.py to skip when not a debug build. --- tests/bugfixes/github/test_issue_547.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/bugfixes/github/test_issue_547.py b/tests/bugfixes/github/test_issue_547.py index 4713a9d9..f81fdb16 100644 --- a/tests/bugfixes/github/test_issue_547.py +++ b/tests/bugfixes/github/test_issue_547.py @@ -1,11 +1,14 @@ # -*- coding: utf-8 -*- from system_tests import CaseMeta, path +import unittest + +@unittest.skip("Skipping test using option -pR (only for Debug mode)") class test_issue_547(metaclass=CaseMeta): """ Regression test for the bug described in: - https://github.com/Exiv2/exiv2/pull/960 + https://github.com/Exiv2/exiv2/pull/547 """ url = "https://github.com/Exiv2/exiv2/issues/547"