Do not append PYTHON to *_REPO paths

$PYTHON variable is sometimes a full path which makes everything fail. It is
also useless move since directories are destroyed after tests and running two
test.sh scripts in parallel is not supported in any case.
This commit is contained in:
ZyX 2015-02-21 15:35:58 +03:00
parent bb6342c12a
commit b2ecb8ca84

View File

@ -39,9 +39,9 @@ else:
use_mercurial = True use_mercurial = True
GIT_REPO = 'git_repo' + os.environ.get('PYTHON', '') GIT_REPO = 'git_repo'
HG_REPO = 'hg_repo' + os.environ.get('PYTHON', '') HG_REPO = 'hg_repo'
BZR_REPO = 'bzr_repo' + os.environ.get('PYTHON', '') BZR_REPO = 'bzr_repo'
def thread_number(): def thread_number():