コード例 #1
0
ファイル: __main__.py プロジェクト: timmartin/hypothesis
 def wrapped():
     if if_changed and tools.IS_PULL_REQUEST:
         if not tools.has_changes(if_changed + BUILD_FILES):
             print('Skipping task due to no changes in %s' %
                   (', '.join(if_changed), ))
             return
     fn()
コード例 #2
0
ファイル: __main__.py プロジェクト: excitedleigh/hypothesis
 def wrapped(*args, **kwargs):
     if if_changed and tools.IS_PULL_REQUEST:
         if not tools.has_changes(if_changed + BUILD_FILES):
             print("Skipping task due to no changes in %s" %
                   (", ".join(if_changed), ))
             return
     fn(*args, **kwargs)
コード例 #3
0
ファイル: __main__.py プロジェクト: sunito/hypothesis
 def wrapped(*args, **kwargs):
     if if_changed and tools.IS_PULL_REQUEST:
         if not tools.has_changes(if_changed + BUILD_FILES):
             print('Skipping task due to no changes in %s' % (
                 ', '.join(if_changed),
             ))
             return
     fn(*args, **kwargs)
コード例 #4
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([RUST_SRC, RUBY_SRC]) or cr.has_release()
コード例 #5
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([SRC])
コード例 #6
0
def has_source_changes():
    return tools.has_changes([PYTHON_SRC])
コード例 #7
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([RUST_SRC, RUBY_SRC]) or cr.has_release()
コード例 #8
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([SRC])
コード例 #9
0
def has_source_changes():
    return tools.has_changes([PYTHON_SRC])