Show More
@@ -7,8 +7,14 b' operations and test Mercurial using them' | |||
|
7 | 7 | unexpected errors and to compare different versions of it.""" |
|
8 | 8 | |
|
9 | 9 | import os |
|
10 | import subprocess | |
|
10 | 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 | 18 | # These tests require Hypothesis and pytz to be installed. |
|
13 | 19 | # Running 'pip install hypothesis pytz' will achieve that. |
|
14 | 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