Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.devtools
Commits
b9b5ac9d
Commit
b9b5ac9d
authored
Oct 05, 2021
by
Amir MOHAMMADI
Browse files
Add a check for python -m pip install line
parent
04c01a23
Pipeline
#54687
canceled with stage
in 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/devtools/scripts/ci.py
View file @
b9b5ac9d
...
...
@@ -1021,6 +1021,18 @@ def check():
f
"pyprojecttoml"
)
# check if the package uses pip to install itself
path
=
"conda/meta.yaml"
if
os
.
path
.
isfile
(
path
):
with
open
(
path
)
as
f
:
content
=
f
.
read
()
if
'- "{{ PYTHON }} -m pip install . -vv"'
not
in
content
:
raise
RuntimeError
(
f
"""Could not find the pip install line inside the
{
path
}
file.
Please apply similar changes to the
{
path
}
file:
https://gitlab.idiap.ch/bob/bob.extension/-/merge_requests/133/diffs"""
)
# if there is a pre-commit configuration file, run the tests
path
=
".pre-commit-config.yaml"
if
os
.
path
.
isfile
(
path
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment