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
a5b57bef
Commit
a5b57bef
authored
1 year ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
MNT: no more setup.py
parent
1a5235ef
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.ci/test_template.sh
+4
-4
4 additions, 4 deletions
.ci/test_template.sh
.ci/zenodo_deposit.sh
+8
-4
8 additions, 4 deletions
.ci/zenodo_deposit.sh
with
12 additions
and
8 deletions
.ci/test_template.sh
+
4
−
4
View file @
a5b57bef
...
@@ -24,9 +24,9 @@ TEST_OPTS="--cov-report= --cov-append"
...
@@ -24,9 +24,9 @@ TEST_OPTS="--cov-report= --cov-append"
# We run some tests under xvfb-run
# We run some tests under xvfb-run
# because they invoke wx. Sleep in
# because they invoke wx. Sleep in
# between, otherwise xvfb gets upset.
# between, otherwise xvfb gets upset.
xvfb-run
-a
py
thon setup.py
test
--addopts
=
"
$TEST_OPTS
tests/test_idle.py"
xvfb-run
-a
pytest
--addopts
=
"
$TEST_OPTS
tests/test_idle.py"
sleep
5
sleep
5
xvfb-run
-a
py
thon setup.py
test
--addopts
=
"
$TEST_OPTS
tests/test_platform.py"
xvfb-run
-a
pytest
--addopts
=
"
$TEST_OPTS
tests/test_platform.py"
# We run the immv/imcp tests as the nobody
# We run the immv/imcp tests as the nobody
# user because some tests expect permission
# user because some tests expect permission
...
@@ -40,11 +40,11 @@ cmd="$cmd --addopts='$TEST_OPTS tests/test_scripts/test_immv_imcp.py tests/test_
...
@@ -40,11 +40,11 @@ cmd="$cmd --addopts='$TEST_OPTS tests/test_scripts/test_immv_imcp.py tests/test_
su
-s
/bin/bash
-c
"
$cmd
"
nobody
su
-s
/bin/bash
-c
"
$cmd
"
nobody
# All other tests can be run as normal.
# All other tests can be run as normal.
py
thon setup.py
test
--addopts
=
"
$TEST_OPTS
-m 'not longtest' --ignore=tests/test_idle.py --ignore=tests/test_platform.py --ignore=tests/test_immv_imcp.py --ignore=tests/test_scripts/test_immv_imcp.py"
pytest
--addopts
=
"
$TEST_OPTS
-m 'not longtest' --ignore=tests/test_idle.py --ignore=tests/test_platform.py --ignore=tests/test_immv_imcp.py --ignore=tests/test_scripts/test_immv_imcp.py"
# Long tests are only run on release branches
# Long tests are only run on release branches
if
[[
$CI_COMMIT_REF_NAME
==
v
*
]]
;
then
if
[[
$CI_COMMIT_REF_NAME
==
v
*
]]
;
then
py
thon setup.py
test
--addopts
=
"
$TEST_OPTS
-m 'longtest'"
pytest
--addopts
=
"
$TEST_OPTS
-m 'longtest'"
fi
fi
python
-m
coverage report
-i
python
-m
coverage report
-i
This diff is collapsed.
Click to expand it.
.ci/zenodo_deposit.sh
+
8
−
4
View file @
a5b57bef
...
@@ -9,10 +9,14 @@ zenodo_url=$1
...
@@ -9,10 +9,14 @@ zenodo_url=$1
zenodo_tkn
=
$2
zenodo_tkn
=
$2
zenodo_depid
=
$3
zenodo_depid
=
$3
version
=
`
python setup.py
-V
`
version
=
$(
cat
fsl/version.py |
upfile
=
`
pwd
`
/dist/fslpy-
"
$version
"
.tar.gz
egrep
'^__version__ +='
|
metafile
=
`
pwd
`
/.ci/zenodo_meta.json.jinja2
cut
-d
"="
-f
2 |
date
=
`
date
+
"%Y-%m-%d"
`
tr
-d
"'"
|
tr
-d
' '
)
upfile
=
$(
pwd
)
/dist/fslpy-
"
$version
"
.tar.gz
metafile
=
$(
pwd
)
/.ci/zenodo_meta.json.jinja2
date
=
$(
date
+
"%Y-%m-%d"
)
pip
install
--retries
10 requests jinja2
pip
install
--retries
10 requests jinja2
...
...
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