Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
3e70d1c0
Commit
3e70d1c0
authored
11 months ago
by
Theo Lesage
Committed by
Bastien Abadie
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix linting, missing argument in restart test and old things in api
parent
bfd7ff7b
No related branches found
No related tags found
1 merge request
!2304
Link tasks to their restarts
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
arkindex/ponos/api.py
+0
-1
0 additions, 1 deletion
arkindex/ponos/api.py
arkindex/ponos/models.py
+0
-1
0 additions, 1 deletion
arkindex/ponos/models.py
arkindex/ponos/tests/test_api.py
+1
-0
1 addition, 0 deletions
arkindex/ponos/tests/test_api.py
with
1 addition
and
2 deletions
arkindex/ponos/api.py
+
0
−
1
View file @
3e70d1c0
...
...
@@ -235,7 +235,6 @@ class TaskRestart(ProcessACLMixin, CreateAPIView):
parents
=
list
(
copy
.
parents
.
all
())
# Rename the original task
basename
,
*
_
=
copy
.
slug
.
rsplit
(
"
_old
"
,
1
)
if
copy
.
original_task_id
:
basename
,
*
_
=
copy
.
slug
.
rsplit
(
"
_old
"
,
1
)
else
:
...
...
This diff is collapsed.
Click to expand it.
arkindex/ponos/models.py
+
0
−
1
View file @
3e70d1c0
...
...
@@ -332,7 +332,6 @@ class Task(models.Model):
null
=
True
,
blank
=
True
,
)
original_task
=
models
.
ForeignKey
(
"
self
"
,
on_delete
=
models
.
SET_NULL
,
...
...
This diff is collapsed.
Click to expand it.
arkindex/ponos/tests/test_api.py
+
1
−
0
View file @
3e70d1c0
...
...
@@ -635,6 +635,7 @@ class TestAPI(FixtureAPITestCase):
mock_now
.
return_value
=
datetime
.
now
(
timezone
.
utc
)
+
timedelta
(
minutes
=
1
)
old_task_2
=
self
.
process
.
tasks
.
create
(
run
=
self
.
task1
.
run
,
depth
=
1
,
slug
=
f
"
{
task_2_slug
}
_old1
"
)
old_task_2
.
state
=
State
.
Error
.
value
old_task_2
.
original_task_id
=
self
.
task1
.
id
old_task_2
.
save
()
old_task_2
.
parents
.
add
(
self
.
task1
)
self
.
task1
.
state
=
State
.
Completed
.
value
...
...
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