We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d97e47 commit 5277fefCopy full SHA for 5277fef
3 files changed
.github/workflows/ci.yml
@@ -30,4 +30,4 @@ jobs:
30
shell: bash
31
32
- name: Run tests
33
- run: hatch run dev:test
+ run: hatch test -v
pyproject.toml
@@ -41,7 +41,6 @@ dependencies = [
41
"isort",
42
"pytest",
43
"pyupgrade",
44
- "aqt",
45
]
46
system-packages = true
47
python = "3.9"
@@ -89,6 +88,7 @@ dependencies = [
89
88
90
"pytest-asyncio",
91
"pytest-xdist",
+ "aqt",
92
93
94
parallel = true
tests/conftest.py
@@ -1,6 +1,10 @@
1
# Copyright: Ajatt-Tools and contributors; https://github.com/Ajatt-Tools
2
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
3
4
+import os
5
+
6
+os.environ.setdefault("QT_QPA_PLATFORM", "offscreen")
7
8
import pytest
9
from aqt.qt import QApplication
10
0 commit comments