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 a2e969e commit 7ad38deCopy full SHA for 7ad38de
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ jobs:
8
lint-test:
9
runs-on: ubuntu-24.04
10
env:
11
- PYTHONPATH: ${{ github.workspace }}/src
+ PYTHONPATH: ${{ github.workspace }}
12
SERPAPI_KEY: "test-key"
13
14
steps:
tests/test_gui.py
@@ -33,4 +33,8 @@ async def fake_run(q):
33
g.start()
34
assert g.btn_start["state"] == "normal"
35
assert "OK — zapisano" in g.status.get()
36
+ try:
37
+ g.root.destroy()
38
+ except Exception:
39
+ pass
40
0 commit comments