changeset 41268:878084a495ef

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
author Matt Harbison <matt_harbison@yahoo.com>
date Wed, 16 Jan 2019 21:54:16 -0500
parents e30eef62e743
children 8b7973d40a01
files tests/test-remotefilelog-datapack.py tests/test-remotefilelog-histpack.py
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-remotefilelog-datapack.py	Wed Jan 16 23:44:08 2019 +0530
+++ b/tests/test-remotefilelog-datapack.py	Wed Jan 16 21:54:16 2019 -0500
@@ -373,4 +373,6 @@
 # - GC two packs into one
 
 if __name__ == '__main__':
+    if pycompat.iswindows:
+        sys.exit(80)    # Skip on Windows
     silenttestrunner.main(__name__)
--- a/tests/test-remotefilelog-histpack.py	Wed Jan 16 23:44:08 2019 +0530
+++ b/tests/test-remotefilelog-histpack.py	Wed Jan 16 21:54:16 2019 -0500
@@ -273,4 +273,6 @@
 # - repack two packs into one
 
 if __name__ == '__main__':
+    if pycompat.iswindows:
+        sys.exit(80)    # Skip on Windows
     silenttestrunner.main(__name__)