##// END OF EJS Templates
tests: make test-verify-repo-operations.py not run by default...
Martin von Zweigbergk -
r28499:8b90367c default
parent child Browse files
Show More
@@ -7,8 +7,14 b' operations and test Mercurial using them'
7 unexpected errors and to compare different versions of it."""
7 unexpected errors and to compare different versions of it."""
8
8
9 import os
9 import os
10 import subprocess
10 import sys
11 import sys
11
12
13 # Only run if slow tests are allowed
14 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'],
15 'slow']):
16 sys.exit(80)
17
12 # These tests require Hypothesis and pytz to be installed.
18 # These tests require Hypothesis and pytz to be installed.
13 # Running 'pip install hypothesis pytz' will achieve that.
19 # Running 'pip install hypothesis pytz' will achieve that.
14 # Note: This won't work if you're running Python < 2.7.
20 # Note: This won't work if you're running Python < 2.7.
General Comments 0
You need to be logged in to leave comments. Login now