search for: c777f096c

Displaying 6 results from an estimated 6 matches for "c777f096c".

2020 Jan 10
0
[PATCH v2 8/8] python: add a pycodestyle test
...nfig.sh.in | 1 + m4/guestfs-python.m4 | 3 +++ python/Makefile.am | 5 +++++ python/test-pycodestyle.sh | 28 ++++++++++++++++++++++++++++ 4 files changed, 37 insertions(+) create mode 100755 python/test-pycodestyle.sh diff --git a/config.sh.in b/config.sh.in index c777f096c..02100f703 100644 --- a/config.sh.in +++ b/config.sh.in @@ -20,3 +20,4 @@ # mostly used in other shell scripts. export XMLLINT="@XMLLINT@" +export PYCODESTYLE="@PYCODESTYLE@" diff --git a/m4/guestfs-python.m4 b/m4/guestfs-python.m4 index ac857915f..505eba5df 100644 --- a/m4/...
2020 Jan 10
0
[PATCH 7/7] python: add a pycodestyle test
...ig.sh.in | 1 + m4/guestfs-python.m4 | 3 +++ python/Makefile.am | 5 +++++ python/test-pycodestyle.sh | 30 ++++++++++++++++++++++++++++++ 4 files changed, 39 insertions(+) create mode 100755 python/test-pycodestyle.sh diff --git a/config.sh.in b/config.sh.in index c777f096c..02100f703 100644 --- a/config.sh.in +++ b/config.sh.in @@ -20,3 +20,4 @@ # mostly used in other shell scripts. export XMLLINT="@XMLLINT@" +export PYCODESTYLE="@PYCODESTYLE@" diff --git a/m4/guestfs-python.m4 b/m4/guestfs-python.m4 index ac857915f..505eba5df 100644 --- a/m4/...
2019 Dec 16
0
[PATCH 2/2] tests: switch to config.sh for xmllint
...hs /inspector/actual-*.xml /inspector/stamp-virt-inspector.pod -/inspector/test-virt-inspector.sh -/inspector/test-virt-inspector-luks.sh -/inspector/test-xmllint.sh /inspector/virt-inspector /inspector/virt-inspector.1 /installcheck.sh diff --git a/config.sh.in b/config.sh.in index 061871a3c..c777f096c 100644 --- a/config.sh.in +++ b/config.sh.in @@ -18,3 +18,5 @@ # This shell script contains the results of some configure checks, # mostly used in other shell scripts. + +export XMLLINT="@XMLLINT@" diff --git a/configure.ac b/configure.ac index 774f78586..64f352323 100644 --- a/config...
2019 Dec 16
3
[PATCH 0/2] tests: simpler way to use configure results
Add a single shell script to hold results of configure. Pino Toscano (2): build: add an empty config.sh tests: switch to config.sh for xmllint .gitignore | 4 +--- config.sh.in | 22 +++++++++++++++++++ configure.ac | 7 +----- ...luks.sh.in => test-virt-inspector-luks.sh} | 2 +-
2020 Jan 10
8
[PATCH 0/7] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python bindings, leaving only an overly length line in setup.py. Add a simple optional pycodestyle-based test to avoid regressions in the future. Pino Toscano (7): python: PEP 8: adapt empty lines python: PEP 8: adapt whitespaces in lines python: tests: catch specific exception python: tests: improve variable naming python: tests:
2020 Jan 10
9
[PATCH v2 0/8] Various Python pycodestyle fixes
Fixes all the pycodestyle issues in the Python bindings, overring one that does not make sense to change (and it's in setup.py, so almost irrelevant). Add a simple optional pycodestyle-based test to avoid regressions in the future. Pino Toscano (8): python: PEP 8: adapt empty lines python: PEP 8: adapt whitespaces in lines python: tests: catch specific exception python: tests: