Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alice
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
trinitas
alice
Commits
8fb20cc4
Commit
8fb20cc4
authored
Mar 27, 2022
by
gyulaid
Browse files
Options
Downloads
Patches
Plain Diff
pep8 fix
parent
50a56215
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
alice-ci/src/alice/__init__.py
+1
-0
1 addition, 0 deletions
alice-ci/src/alice/__init__.py
alice-ci/src/alice/__main__.py
+1
-1
1 addition, 1 deletion
alice-ci/src/alice/__main__.py
alice-ci/src/alice/cli.py
+2
-0
2 additions, 0 deletions
alice-ci/src/alice/cli.py
with
4 additions
and
1 deletion
alice-ci/src/alice/__init__.py
+
1
−
0
View file @
8fb20cc4
# flake8: noqa F401
from
.cli
import
App
from
.jobparser
import
Job
,
JobParser
from
.exceptions
import
NonZeroRetcode
...
...
This diff is collapsed.
Click to expand it.
alice-ci/src/alice/__main__.py
+
1
−
1
View file @
8fb20cc4
This diff is collapsed.
Click to expand it.
alice-ci/src/alice/cli.py
+
2
−
0
View file @
8fb20cc4
...
...
@@ -71,6 +71,7 @@ class App:
print
(
f
"
Step
{
step
}
not found in
{
args
.
input
}
"
)
exit
(
1
)
def
main
():
pathToScriptDir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
repoDir
=
os
.
path
.
join
(
pathToScriptDir
,
"
..
"
)
...
...
@@ -86,5 +87,6 @@ def main():
exit
(
1
)
app
.
run
(
args
,
repoDir
)
if
__name__
==
"
__main__
"
:
main
()
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