[Notes] [Git][BuildStream/buildstream][chandan/fix-badge-subprocess-error] 3 commits: .gitlab-ci: make wsl-test automatic, allow failure



Title: GitLab

Chandan Singh pushed to branch chandan/fix-badge-subprocess-error at BuildStream / buildstream

Commits:

2 changed files:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -160,7 +160,7 @@ tests-wsl:
    160 160
     
    
    161 161
       script:
    
    162 162
       - "${TEST_COMMAND}"
    
    163
    -  when: manual
    
    163
    +  allow_failure: true
    
    164 164
     
    
    165 165
     # Automatically build documentation for every commit, we want to know
    
    166 166
     # if building documentation fails even if we're not deploying it.
    

  • doc/badges.py
    ... ... @@ -96,7 +96,7 @@ def parse_tag(tag):
    96 96
     def guess_version(release):
    
    97 97
         try:
    
    98 98
             tags_output = subprocess.check_output(['git', 'tag'])
    
    99
    -    except CalledProcessError:
    
    99
    +    except subprocess.CalledProcessError:
    
    100 100
             return (0, 0, 0)
    
    101 101
     
    
    102 102
         # Parse the `git tag` output into a list of integer tuples
    



  • [Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]