# HG changeset patch # User Matt Harbison # Date 2019-01-17 02:54:16 # Node ID 878084a495ef76ada952f032d90eca55fd460ba4 # Parent e30eef62e743597b44f2ccbeb0e2fc12040af174 tests: also skip remotefilelog *.py tests on Windows Otherwise, the buildbot won't even be green on stable with the RC. This should have gone with 0800d9e6e216. Previous discussion in this thread: https://www.mercurial-scm.org/pipermail/mercurial-devel/2018-November/125421.html 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 @@ -373,4 +373,6 @@ class datapacktests(datapacktestsbase, u # - GC two packs into one if __name__ == '__main__': + if pycompat.iswindows: + sys.exit(80) # Skip on Windows silenttestrunner.main(__name__) diff --git a/tests/test-remotefilelog-histpack.py b/tests/test-remotefilelog-histpack.py --- a/tests/test-remotefilelog-histpack.py +++ b/tests/test-remotefilelog-histpack.py @@ -273,4 +273,6 @@ class histpacktests(unittest.TestCase): # - repack two packs into one if __name__ == '__main__': + if pycompat.iswindows: + sys.exit(80) # Skip on Windows silenttestrunner.main(__name__)