mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Appease lint checker
This commit is contained in:
parent
96cf5d0b4b
commit
bc55a64864
1 changed files with 4 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue