Skip to content

Commit 51d3481

Browse files
committed
Print lxml libxml2 version
1 parent c7f66d3 commit 51d3481

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ skip = [
6060
"cp37-musllinux_aarch64",
6161
]
6262
test-command = "pytest -v --color=yes {package}/tests"
63-
before-test = "pip install -r requirements-test.txt --no-binary lxml"
63+
# before-test = "pip install -r requirements-test.txt --no-binary lxml"
64+
before-test = "pip install -r requirements-test.txt"
6465
# test-skip = "*-macosx_arm64 cp39-win_amd64"
6566
test-skip = "*-macosx_arm64"
6667

tests/test_constants.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
"""Test constants from :mod:`xmlsec.constants` module."""
22

3+
from lxml import etree
4+
print(etree.LIBXML_VERSION)
5+
assert False
6+
37
import pytest
48

59

6-
import dlltracer
710
import sys
811

9-
with dlltracer.Trace(out=sys.stdout):
10-
import xmlsec
12+
import xmlsec
1113

1214

1315
def _constants(typename):

0 commit comments

Comments
 (0)