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

View File

@ -13,6 +13,7 @@ import threading
import os import os
import sys import sys
import re import re
import platform
from time import sleep from time import sleep
from subprocess import call, PIPE from subprocess import call, PIPE
from functools import partial from functools import partial
@ -466,7 +467,8 @@ class TestFilesystemWatchers(TestCase):
os.rename(f, f + '1') os.rename(f, f + '1')
changed() 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): class TestVCS(TestCase):