Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
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
base
Commits
5a273ac0
Commit
5a273ac0
authored
3 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: make tests pyfeeds compatible
parent
64af0808
No related branches found
No related tags found
1 merge request
!12
Rf/createwrapper macos
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/feedsRun
+3
-0
3 additions, 0 deletions
tests/feedsRun
tests/test_create_remove_wrapper.py
+23
-1
23 additions, 1 deletion
tests/test_create_remove_wrapper.py
with
26 additions
and
1 deletion
tests/feedsRun
0 → 100755
+
3
−
0
View file @
5a273ac0
#!/usr/bin/env bash
fslpython ./test_create_remove_wrapper.py
${
FSLDIR
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.ci
/test_create_remove_wrapper.py
→
tests
/test_create_remove_wrapper.py
+
23
−
1
View file @
5a273ac0
#!/usr/bin/env python
#!/usr/bin/env python
#
#
# test_create_remove_wrapper.py - Test the createFSLWrapper.sh and
# test_create_remove_wrapper.py - Test the createFSLWrapper.sh and
# removeFSLWrapper.sh scripts. Requires Python
3.7.
# removeFSLWrapper.sh scripts. Requires Python
>=
3.7.
#
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
#
import
sys
import
os.path
as
op
import
os.path
as
op
import
subprocess
as
sp
import
subprocess
as
sp
import
textwrap
as
tw
import
textwrap
as
tw
...
@@ -18,6 +19,11 @@ import contextlib
...
@@ -18,6 +19,11 @@ import contextlib
from
unittest
import
mock
from
unittest
import
mock
# Paths to create/remove wrapper scripts, when
# running from an in-source version. These may
# be overwritten within the __main__ clause at
# the bottom, where BASE_DIR may be provided
# as a command-line argument.
BASE_DIR
=
op
.
abspath
(
op
.
join
(
op
.
dirname
(
__file__
),
'
..
'
))
BASE_DIR
=
op
.
abspath
(
op
.
join
(
op
.
dirname
(
__file__
),
'
..
'
))
CREATE_WRAPPER
=
op
.
join
(
BASE_DIR
,
'
share
'
,
'
fsl
'
,
'
sbin
'
,
'
createFSLWrapper
'
)
CREATE_WRAPPER
=
op
.
join
(
BASE_DIR
,
'
share
'
,
'
fsl
'
,
'
sbin
'
,
'
createFSLWrapper
'
)
REMOVE_WRAPPER
=
op
.
join
(
BASE_DIR
,
'
share
'
,
'
fsl
'
,
'
sbin
'
,
'
removeFSLWrapper
'
)
REMOVE_WRAPPER
=
op
.
join
(
BASE_DIR
,
'
share
'
,
'
fsl
'
,
'
sbin
'
,
'
removeFSLWrapper
'
)
...
@@ -176,3 +182,19 @@ def test_create_remove_wrappers():
...
@@ -176,3 +182,19 @@ def test_create_remove_wrappers():
assert
not
op
.
exists
(
op
.
join
(
wrapperdir
,
'
test_script1
'
))
assert
not
op
.
exists
(
op
.
join
(
wrapperdir
,
'
test_script1
'
))
assert
not
op
.
exists
(
op
.
join
(
wrapperdir
,
'
test_script2
'
))
assert
not
op
.
exists
(
op
.
join
(
wrapperdir
,
'
test_script2
'
))
if
__name__
==
'
__main__
'
:
# base dir can be speecified on command line
if
len
(
sys
.
argv
)
>
1
:
BASE_DIR
=
sys
.
argv
[
1
]
SBIN_DIR
=
op
.
join
(
BASE_DIR
,
'
share
'
,
'
fsl
'
,
'
sbin
'
)
CREATE_WRAPPER
=
op
.
join
(
SBIN_DIR
,
'
createFSLWrapper
'
)
REMOVE_WRAPPER
=
op
.
join
(
SBIN_DIR
,
'
removeFSLWrapper
'
)
thismod
=
sys
.
modules
[
__name__
]
for
test
in
dir
(
thismod
):
if
test
.
startswith
(
'
test_
'
):
test
=
getattr
(
thismod
,
test
)
if
callable
(
test
):
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