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:
parent
bb6342c12a
commit
b2ecb8ca84
|
@ -39,9 +39,9 @@ else:
|
|||
use_mercurial = True
|
||||
|
||||
|
||||
GIT_REPO = 'git_repo' + os.environ.get('PYTHON', '')
|
||||
HG_REPO = 'hg_repo' + os.environ.get('PYTHON', '')
|
||||
BZR_REPO = 'bzr_repo' + os.environ.get('PYTHON', '')
|
||||
GIT_REPO = 'git_repo'
|
||||
HG_REPO = 'hg_repo'
|
||||
BZR_REPO = 'bzr_repo'
|
||||
|
||||
|
||||
def thread_number():
|
||||
|
|
Loading…
Reference in New Issue