Ignore py compilation issues

This commit is contained in:
James Page 2018-11-01 16:18:46 +00:00
parent 4f90e42500
commit c9595fd587
1 changed files with 2 additions and 1 deletions

View File

@ -336,7 +336,8 @@ parts:
# as stated in PEP-0370
sed -i usr/lib/python2.7/site.py -e 's/^ENABLE_USER_SITE = None$/ENABLE_USER_SITE = False/'
# This is the last step, let's now compile all our pyc files.
./usr/bin/python2.7 -m compileall lib/python2.7
# Ignore errors due to syntax issues in foobar python 2.
./usr/bin/python2.7 -m compileall . || true
keystone-config:
after: [openstack-projects]