We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 806cdf6 commit 7fc1e4fCopy full SHA for 7fc1e4f
1 file changed
.github/workflows/linuxbrew.yml
@@ -49,5 +49,7 @@ jobs:
49
export LDFLAGS="-L$(brew --prefix)/lib"
50
export PKG_CONFIG_PATH="$(brew --prefix)/opt/libxml2/lib/pkgconfig"
51
pip3 install --upgrade --no-binary=lxml -r requirements-test.txt
52
+ python3 -c "from lxml import etree; print('lxml libxml2 compiled:', etree.LIBXML_COMPILED_VERSION); print('lxml libxml2 runtime:', etree.LIBXML_VERSION)"
53
pip3 install xmlsec --only-binary=xmlsec --no-index --find-links=dist/
54
+ python3 -c "import xmlsec; print('xmlsec libxml2 compiled:', xmlsec.get_libxml_compiled_version()); print('xmlsec libxml2 runtime:', xmlsec.get_libxml_version()); print('xmlsec libxmlsec:', xmlsec.get_libxmlsec_version())"
55
pytest -v --color=yes
0 commit comments