Skip to content
Snippets Groups Projects
  • Pierre Riteau's avatar
    7b605851
    Update hacking for Python3 · 7b605851
    Pierre Riteau authored
    The repo is Python 3 now, so update hacking to version 3.0 which
    supports Python 3.
    
    Ignore bashate failure on one-liner loops.
    
    Add pcre devel packages to fix failing pep8 jobs.
    
    Change-Id: I3442174b378cc6e361550fcb9b32a62f61fa7972
    7b605851
    History
    Update hacking for Python3
    Pierre Riteau authored
    The repo is Python 3 now, so update hacking to version 3.0 which
    supports Python 3.
    
    Ignore bashate failure on one-liner loops.
    
    Add pcre devel packages to fix failing pep8 jobs.
    
    Change-Id: I3442174b378cc6e361550fcb9b32a62f61fa7972
run-bashate.sh 372 B
#!/bin/bash

# Ignore E006 -- line length greater than 80 char

ROOT=$(readlink -fn $(dirname $0)/.. )
# NOTE(priteau): ignore E010 because it fails on one-liner bash loops:
# https://bugs.launchpad.net/bash8/+bug/1895102
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \
    -and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006 --ignore E010