Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HearingTest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ed Rogers
HearingTest
Commits
21cb8610
Commit
21cb8610
authored
Apr 4, 2018
by
Ed Rogers
Browse files
Options
Downloads
Patches
Plain Diff
Handle aborting properly
parent
c70346de
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
HearingTestGUI.py
+5
-0
5 additions, 0 deletions
HearingTestGUI.py
with
5 additions
and
0 deletions
HearingTestGUI.py
+
5
−
0
View file @
21cb8610
...
...
@@ -213,8 +213,13 @@ class TestWindow(QMainWindow):
def
aborted
(
self
):
self
.
log
.
append
(
'
Test aborted
'
)
self
.
title
.
setText
(
self
.
start_text
)
self
.
test
=
None
self
.
test_running
=
False
def
test_finished
(
self
):
if
not
self
.
test_running
:
return
self
.
test_running
=
False
self
.
title
.
setText
(
self
.
start_text
)
self
.
log
.
append
(
"
Finished test
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment