Appease lint checker

This commit is contained in:
Alex Pyrgiotis 2024-02-19 17:45:57 +02:00
parent 96cf5d0b4b
commit bc55a64864
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -728,6 +728,7 @@ class QAWindows(QABase):
# NOTE: We can't use select() on Windows. See:
# https://docs.python.org/3/library/select.html#select.select
import msvcrt
while msvcrt.kbhit():
msvcrt.getch()
@ -754,7 +755,9 @@ class QAWindows(QABase):
@QABase.task("Run tests", ref="REF_BUILD", auto=True)
def run_tests(self):
# NOTE: Windows does not have Makefile by default.
self.run("poetry", "run", "pytest", "-v", "--ignore", r"tests\test_large_set.py")
self.run(
"poetry", "run", "pytest", "-v", "--ignore", r"tests\test_large_set.py"
)
@QABase.task("Build Dangerzone .exe", ref="REF_BUILD", auto=True)
def build_dangerzone_exe(self):