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
3953e857
Commit
3953e857
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
make importall test a bit more robust
parent
272f3c51
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_importall.py
+19
-13
19 additions, 13 deletions
tests/test_importall.py
with
19 additions
and
13 deletions
tests/test_importall.py
+
19
−
13
View file @
3953e857
...
...
@@ -6,20 +6,26 @@
#
import
pkgutil
import
importlib
import
fsl
def
test_importall
():
import
fsl
as
fsl
import
fsl.data
as
data
import
fsl.utils
as
utils
import
fsl.scripts
as
scripts
for
_
,
module
,
_
in
pkgutil
.
iter_modules
(
fsl
.
__path__
,
'
fsl.
'
):
__import__
(
module
)
for
_
,
module
,
_
in
pkgutil
.
iter_modules
(
data
.
__path__
,
'
fsl.data.
'
):
__import__
(
module
)
for
_
,
module
,
_
in
pkgutil
.
iter_modules
(
utils
.
__path__
,
'
fsl.utils.
'
):
__import__
(
module
)
for
_
,
module
,
_
in
pkgutil
.
iter_modules
(
scripts
.
__path__
,
'
fsl.scripts.
'
):
__import__
(
module
)
def
recurse
(
module
):
path
=
module
.
__path__
name
=
module
.
__name__
submods
=
list
(
pkgutil
.
iter_modules
(
path
,
'
{}.
'
.
format
(
name
)))
for
i
,
(
spath
,
smodname
,
ispkg
)
in
enumerate
(
submods
):
submod
=
importlib
.
import_module
(
smodname
)
if
ispkg
:
recurse
(
submod
)
recurse
(
fsl
)
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