Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pyfeeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
pyfeeds
Commits
ef1dc258
Commit
ef1dc258
authored
1 year ago
by
Paul McCarthy
Browse files
Options
Downloads
Plain Diff
Merge branch 'mnt/mkexec' into 'master'
Mnt/mkexec See merge request
!35
parents
6bd8fd46
0ad2616e
No related branches found
No related tags found
1 merge request
!35
Mnt/mkexec
Pipeline
#19271
passed
1 year ago
Stage: test
Stage: fsl-ci-build
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.rst
+9
-0
9 additions, 0 deletions
CHANGELOG.rst
pyfeeds/__init__.py
+1
-1
1 addition, 1 deletion
pyfeeds/__init__.py
pyfeeds/testing.py
+7
-0
7 additions, 0 deletions
pyfeeds/testing.py
with
17 additions
and
1 deletion
CHANGELOG.rst
+
9
−
0
View file @
ef1dc258
...
@@ -2,6 +2,15 @@
...
@@ -2,6 +2,15 @@
=====================
=====================
0.12.2 (Thursday 13th July 2023)
--------------------------------
* Pyfeeds will try to make ``feedsRun`` scripts executable if they are not
already.
0.12.1 (Friday 31st March 2023)
0.12.1 (Friday 31st March 2023)
-------------------------------
-------------------------------
...
...
This diff is collapsed.
Click to expand it.
pyfeeds/__init__.py
+
1
−
1
View file @
ef1dc258
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
#
__version__
=
'
0.12.
1
'
__version__
=
'
0.12.
2
'
"""
The pyfeeds version number.
"""
"""
The pyfeeds version number.
"""
...
...
This diff is collapsed.
Click to expand it.
pyfeeds/testing.py
+
7
−
0
View file @
ef1dc258
...
@@ -604,6 +604,13 @@ def runTest(pyf,
...
@@ -604,6 +604,13 @@ def runTest(pyf,
log
.
debug
(
'
(Re-)Creating test output directory: %s
'
,
outputDir
)
log
.
debug
(
'
(Re-)Creating test output directory: %s
'
,
outputDir
)
os
.
makedirs
(
outputDir
)
os
.
makedirs
(
outputDir
)
# Try to make executable if not
if
not
os
.
access
(
test
.
testScript
,
os
.
X_OK
):
try
:
os
.
chmod
(
test
.
testScript
,
0o755
)
except
Exception
:
log
.
warning
(
'
%s is not executable!
'
,
test
.
testScript
)
cmd
=
[
test
.
testScript
,
outputDir
,
sandboxDir
,
benchmarkDir
]
cmd
=
[
test
.
testScript
,
outputDir
,
sandboxDir
,
benchmarkDir
]
cmd
=
[
str
(
c
)
for
c
in
cmd
]
cmd
=
[
str
(
c
)
for
c
in
cmd
]
...
...
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