Skip to content

Commit 7c5e01f

Browse files
committed
Disable --importmode=importlib to work around pytest-dev/pytest#9645
1 parent 7b27f76 commit 7c5e01f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

MANIFEST.in

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
include AUTHORS.md
2-
include CHANGELOG.md
3-
include LICENSE.txt
4-
include README.md
5-
include SECURITY.md
1+
include AUTHORS*
2+
include CHANGELOG*
3+
include LICENSE*
4+
include README*
5+
include SECURITY*
6+
include pytest.ini
67
recursive-include qtpy/tests *.py *.ui

pytest.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[pytest]
2-
addopts = --durations=10 -v -r a --color=yes --code-highlight=yes --strict-config --strict-markers --import-mode=importlib --maxfail 10 --cov=qtpy --cov-report=term-missing
2+
# Temporarily remove --imoprtmode=imoprtlib due to pytest-dev/pytest#9681
3+
addopts = --durations=10 -v -r a --color=yes --code-highlight=yes --strict-config --strict-markers --maxfail 10 --cov=qtpy --cov-report=term-missing
34
empty_parameter_set_mark = fail_at_collect
45
filterwarnings =
56
error

0 commit comments

Comments
 (0)