diff options
author | Yun Zheng Hu <yunzheng.hu@gmail.com> | 2021-07-14 17:25:59 +0200 |
---|---|---|
committer | Yun Zheng Hu <yunzheng.hu@gmail.com> | 2021-07-14 17:25:59 +0200 |
commit | 15f418480db9e279f7de244206d9ed1b1a3052b5 (patch) | |
tree | 744203db2ea79970748a1196d1127241bde7bc33 | |
parent | c414479fdf1d5ad77170f977481fb9197c9559ae (diff) | |
download | vyos-1x-15f418480db9e279f7de244206d9ed1b1a3052b5.tar.gz vyos-1x-15f418480db9e279f7de244206d9ed1b1a3052b5.zip |
vyos-1x-vmware: T3681: don't bytecompile ether-resume.py
Exclude /vmware-tools/scripts/ from bytecompilation to avoid the
`__pycache__` directory being created.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,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 |