##// END OF EJS Templates
tests: mark test-check-interfaces.py as requiring a repo...
Martin von Zweigbergk -
r37832:265c122b stable
parent child Browse files
Show More
@@ -6,6 +6,13 b' from mercurial import encoding'
6 6 encoding.environ[b'HGREALINTERFACES'] = b'1'
7 7
8 8 import os
9 import subprocess
10 import sys
11
12 # Only run if tests are run in a repo
13 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'],
14 'test-repo']):
15 sys.exit(80)
9 16
10 17 from mercurial.thirdparty.zope import (
11 18 interface as zi,
General Comments 0
You need to be logged in to leave comments. Login now