Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
34db3b00
Commit
34db3b00
authored
3 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Try and avoid conflicts in parallel tests in docker
parent
3a7dadd8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_platform.py
+17
-2
17 additions, 2 deletions
tests/test_platform.py
with
17 additions
and
2 deletions
tests/test_platform.py
+
17
−
2
View file @
34db3b00
...
...
@@ -10,6 +10,7 @@ import os
import
gc
import
os.path
as
op
import
sys
import
time
import
shutil
import
tempfile
import
pytest
...
...
@@ -41,8 +42,22 @@ def test_haveGui():
import
wx
p
=
fslplatform
.
Platform
()
app
=
wx
.
App
()
p
=
fslplatform
.
Platform
()
# We can get weird conflicts w.r.t. access to
# the display when multiple tests are running
# simultaneously within docker on the same
# machine.
app
=
None
for
_
in
range
(
5
):
try
:
app
=
wx
.
App
()
break
except
Exception
:
time
.
sleep
(
1
)
if
app
is
None
:
assert
False
frame
=
wx
.
Frame
(
None
)
passed
=
[
False
]
frame
.
Show
()
...
...
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