mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
12 lines
283 B
Bash
12 lines
283 B
Bash
#!/bin/bash
|
|
|
|
# requires netaddr
|
|
|
|
export PYTHONPATH="../../patches/debian/config/opt/cloud/bin/"
|
|
export PYTHONDONTWRITEBYTECODE=False
|
|
|
|
pep8 --max-line-length=179 --exclude=monitorServices.py,baremetal-vr.py `find ../../patches -name \*.py`
|
|
pep8 --max-line-length=179 *py
|
|
|
|
nosetests .
|