Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
dashboards
Commits
abb88a55ee74
Commit
67fa197e
authored
Oct 13, 2020
by
Laurent Peuch
Browse files
fix: lower all requirements in case of
parent
8de3acc89599
Pipeline
#17398
passed with stages
in 4 minutes and 49 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
qa_dashboard.py
View file @
abb88a55
...
...
@@ -76,7 +76,7 @@ for number, cube in enumerate(all_cubes):
if
PYTEST_CAPTURE_DEPRECATEDWARNINGS_PACKAGE_URI
in
deps
:
has_capture_deprecated_warnings
=
True
elif
uses_dev_requirements
and
"dev-requirements.txt"
in
cube_files
:
requirements
=
[
x
.
strip
()
for
x
in
cube
.
files
.
get
(
"dev-requirements.txt"
,
ref
=
"branch/default"
).
decode
().
decode
(
"Utf-8"
)
if
not
x
.
strip
().
startswith
(
"#"
)]
requirements
=
[
x
.
strip
()
.
lower
()
for
x
in
cube
.
files
.
get
(
"dev-requirements.txt"
,
ref
=
"branch/default"
).
decode
().
decode
(
"Utf-8"
)
if
not
x
.
strip
().
startswith
(
"#"
)]
if
PYTEST_CAPTURE_DEPRECATEDWARNINGS_PACKAGE_URI
in
requirements
:
has_capture_deprecated_warnings
=
True
...
...
Write
Preview
Supports
Markdown
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