mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
skip test with mystery failure only on macOS
https://gitlab.com/fdroid/fdroidserver/-/merge_requests/1587#note_2273747610 This happened when this test was a shell script as well: https://gitlab.com/fdroid/fdroidserver/-/blob/2.3.5/tests/run-tests#L1244
This commit is contained in:
parent
dde1942520
commit
f92542c7ea
1 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
import itertools
|
||||
import os
|
||||
import platform
|
||||
import re
|
||||
import shlex
|
||||
import shutil
|
||||
|
@ -1330,6 +1331,9 @@ class IntegrationTest(unittest.TestCase):
|
|||
["git", "rev-list", "--count", "HEAD"], capture_output=True
|
||||
)
|
||||
self.assertEqual(int(proc.stdout), 1)
|
||||
|
||||
if platform.system() == 'Darwin':
|
||||
self.skipTest('FIXME the last step of this test fails only on macOS')
|
||||
os.chdir(server_git_mirror)
|
||||
proc = self.assert_run(
|
||||
["git", "rev-list", "--count", "HEAD"], capture_output=True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue