This seems cleaner.
Details
Details
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
This seems cleaner.
Automatic diff as part of commit; lint not applicable. |
Automatic diff as part of commit; unit tests not applicable. |
Path | Packages | |||
---|---|---|---|---|
M | tests/run-tests.py (3 lines) |
Status | Author | Revision | |
---|---|---|---|
Closed | Alphare | ||
Closed | Alphare | ||
Closed | Alphare | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | Alphare | ||
Closed | marmoute | ||
Abandoned | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | D11067 windows: use abspath in url | |
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | marmoute | ||
Closed | Alphare | ||
Closed | Alphare |
# Affects hghave.py | # Affects hghave.py | ||||
osenvironb[b'RHG_INSTALLED_AS_HG'] = b'1' | osenvironb[b'RHG_INSTALLED_AS_HG'] = b'1' | ||||
# Affects configuration. Alternatives would be setting configuration through | # Affects configuration. Alternatives would be setting configuration through | ||||
# `$HGRCPATH` but some tests override that, or changing `_hgcommand` to include | # `$HGRCPATH` but some tests override that, or changing `_hgcommand` to include | ||||
# `--config` but that disrupts tests that print command lines and check expected | # `--config` but that disrupts tests that print command lines and check expected | ||||
# output. | # output. | ||||
osenvironb[b'RHG_ON_UNSUPPORTED'] = b'fallback' | osenvironb[b'RHG_ON_UNSUPPORTED'] = b'fallback' | ||||
osenvironb[b'RHG_FALLBACK_EXECUTABLE'] = real_hg | osenvironb[b'RHG_FALLBACK_EXECUTABLE'] = real_hg | ||||
else: | |||||
# drop flag for hghave | |||||
osenvironb.pop(b'RHG_INSTALLED_AS_HG', None) | |||||
if self.options.rhg: | if self.options.rhg: | ||||
self._hgcommand = b'rhg' | self._hgcommand = b'rhg' | ||||
elif self.options.with_rhg: | elif self.options.with_rhg: | ||||
rhgbindir = os.path.dirname(os.path.realpath(self.options.with_rhg)) | rhgbindir = os.path.dirname(os.path.realpath(self.options.with_rhg)) | ||||
self._hgcommand = os.path.basename(self.options.with_rhg) | self._hgcommand = os.path.basename(self.options.with_rhg) | ||||
osenvironb[b"BINDIR"] = self._bindir | osenvironb[b"BINDIR"] = self._bindir | ||||
osenvironb[b"PYTHON"] = PYTHON | osenvironb[b"PYTHON"] = PYTHON |