# HG changeset patch # User Dirkjan Ochtman # Date 2008-11-05 17:57:54 # Node ID 408cf9eb9e5dd5ea410a2f27cd8f0c01349d0317 # Parent a0843c82d1a2e4f6f343414fd2ad8ca918b2ba2f tests: run svn tests only with svn bindings >1.3 diff --git a/tests/hghave b/tests/hghave --- a/tests/hghave +++ b/tests/hghave @@ -118,6 +118,9 @@ def has_svn(): def has_svn_bindings(): try: import svn.core + version = svn.core.SVN_VER_MAJOR, svn.core.SVN_VER_MINOR + if version < (1, 4): + return False return True except ImportError: return False