pep8 fix
This commit is contained in:
parent
01ddaa4be8
commit
6f592ba2f0
@ -5,4 +5,5 @@ install:
|
|||||||
script:
|
script:
|
||||||
- pep8 --ignore=E501 update.py
|
- pep8 --ignore=E501 update.py
|
||||||
- pep8 --ignore=E501 test/test.py
|
- pep8 --ignore=E501 test/test.py
|
||||||
|
- pep8 --ignore=E501 lib/config.py
|
||||||
- py.test -vv test/test.py
|
- py.test -vv test/test.py
|
||||||
|
@ -50,12 +50,10 @@ def run_cmake(command, build_path, default_build_path):
|
|||||||
"""
|
"""
|
||||||
topdir = os.getcwd()
|
topdir = os.getcwd()
|
||||||
os.chdir(build_path)
|
os.chdir(build_path)
|
||||||
p = subprocess.Popen(
|
p = subprocess.Popen(command,
|
||||||
command,
|
|
||||||
shell=True,
|
shell=True,
|
||||||
stdin=subprocess.PIPE,
|
stdin=subprocess.PIPE,
|
||||||
stdout=subprocess.PIPE
|
stdout=subprocess.PIPE)
|
||||||
)
|
|
||||||
s = p.communicate()[0].decode('UTF-8')
|
s = p.communicate()[0].decode('UTF-8')
|
||||||
# print cmake output to screen
|
# print cmake output to screen
|
||||||
print(s)
|
print(s)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user