Set use_mercurial and use_bzr to False in PyPy

This commit is contained in:
ZyX 2014-07-10 19:49:37 +04:00
parent 19195159ad
commit 871ce5727b
1 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ import threading
import os
import sys
import re
import platform
from time import sleep
from subprocess import call, PIPE
from functools import partial
@ -466,7 +467,8 @@ class TestFilesystemWatchers(TestCase):
os.rename(f, f + '1')
changed()
use_mercurial = use_bzr = sys.version_info < (3, 0)
use_mercurial = use_bzr = (sys.version_info < (3, 0)
and platform.python_implementation() == 'CPython')
class TestVCS(TestCase):