mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
index: fix git-mirror size check for GitLab Pages
The test case had the wrong folder setup, this was confirmed on a production repo setup.
This commit is contained in:
parent
83335437b9
commit
f24613b701
2 changed files with 5 additions and 3 deletions
|
@ -416,8 +416,9 @@ class IndexTest(unittest.TestCase):
|
|||
|
||||
def test_gitlab_get_mirror_service_urls(self):
|
||||
with tempfile.TemporaryDirectory() as tmpdir, TmpCwd(tmpdir):
|
||||
os.mkdir('fdroid')
|
||||
with Path('fdroid/placeholder').open('w') as fp:
|
||||
git_mirror_path = Path('git-mirror/fdroid')
|
||||
git_mirror_path.mkdir(parents=True)
|
||||
with (git_mirror_path / 'placeholder').open('w') as fp:
|
||||
fp.write(' ')
|
||||
for url in [
|
||||
'git@gitlab.com:group/project',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue