diff options
author | Yun Zheng Hu <yunzheng.hu@gmail.com> | 2021-07-14 17:25:59 +0200 |
---|---|---|
committer | Yun Zheng Hu <hu@fox-it.com> | 2021-07-23 22:58:17 +0200 |
commit | 9ee239cd4857da938ed5b7a147435fd2361574ac (patch) | |
tree | 1b65bc540a4f0a473bbd1e2def772655c95fc3f6 /Makefile | |
parent | 7292631373ea50f9908796ef2eda32e672d1df2e (diff) | |
download | vyos-1x-9ee239cd4857da938ed5b7a147435fd2361574ac.tar.gz vyos-1x-9ee239cd4857da938ed5b7a147435fd2361574ac.zip |
vyos-1x-vmware: T3681: don't bytecompile ether-resume.py
Exclude /vmware-tools/scripts/ from bytecompilation to avoid the
`__pycache__` directory being created.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ clean: .PHONY: test test: - set -e; python3 -m compileall -q . + set -e; python3 -m compileall -q -x '/vmware-tools/scripts/' . PYTHONPATH=python/ python3 -m "nose" --with-xunit src --with-coverage --cover-erase --cover-xml --cover-package src/conf_mode,src/op_mode,src/completion,src/helpers,src/validators,src/tests --verbose .PHONY: sonar |