Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Skip failing test if platform.dist() is Xenial#831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
cclauss wants to merge4 commits intogitpython-developers:masterfromcclauss:patch-3
Closed
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletionsgit/test/test_remote.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,6 +4,7 @@
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php

import platform
import random
import tempfile
from unittest import skipIf
Expand DownExpand Up@@ -34,6 +35,8 @@
from git.util import IterableList, rmtree, HIDE_WINDOWS_FREEZE_ERRORS
import os.path as osp

platform_version = platform.version()
IS_DIST_XENIAL = '-Ubuntu' in platform_version and '16.04' in platform_version

# assure we have repeatable results
random.seed(0)
Expand DownExpand Up@@ -398,6 +401,7 @@ def _assert_push_and_pull(self, remote, rw_repo, remote_repo):
remote.push(":%s" % other_tag.path)

@skipIf(HIDE_WINDOWS_FREEZE_ERRORS, "FIXME: Freezes!")
@skipIf(IS_DIST_XENIAL, "Test fails when dist is Xenial. #827")
@with_rw_and_rw_remote_repo('0.1.6')
def test_base(self, rw_repo, remote_repo):
num_remotes = 0
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp