File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ skip = [
60
60
" cp37-musllinux_aarch64" ,
61
61
]
62
62
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"
64
65
# test-skip = "*-macosx_arm64 cp39-win_amd64"
65
66
test-skip = " *-macosx_arm64"
66
67
Original file line number Diff line number Diff line change 1
1
"""Test constants from :mod:`xmlsec.constants` module."""
2
2
3
+ from lxml import etree
4
+ print (etree .LIBXML_VERSION )
5
+ assert False
6
+
3
7
import pytest
4
8
5
9
6
- import dlltracer
7
10
import sys
8
11
9
- with dlltracer .Trace (out = sys .stdout ):
10
- import xmlsec
12
+ import xmlsec
11
13
12
14
13
15
def _constants (typename ):
You can’t perform that action at this time.
0 commit comments