Closed by commit rHGdca4b5da417d: test: cleanly skip test-remotefilelog-datapack.py on policy that breaks it (authored by marmoute). This revision was automatically updated to reflect the committed changes. This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D8245?vs=20537&id=20607 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D8245/new/ REVISION DETAIL https://phab.mercurial-scm.org/D8245 AFFECTED FILES tests/test-remotefilelog-datapack.py CHANGE DETAILS diff --git a/tests/test-remotefilelog-datapack.py b/tests/test-remotefilelog-datapack.py --- a/tests/test-remotefilelog-datapack.py +++ b/tests/test-remotefilelog-datapack.py @@ -17,6 +17,14 @@ # Load the local remotefilelog, not the system one sys.path[0:0] = [os.path.join(os.path.dirname(__file__), '..')] from mercurial.node import nullid +from mercurial import policy + +if not policy._packageprefs.get(policy.policy, (False, False))[1]: + if __name__ == '__main__': + msg = "skipped: pure module not available with module policy:" + print(msg, policy.policy, file=sys.stderr) + sys.exit(80) + from mercurial import ( pycompat, ui as uimod, To: marmoute, #hg-reviewers, Alphare Cc: Alphare, mercurial-devel _______________________________________________ Mercurial-devel mailing list [email protected] https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel
