Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-web
Commits
aba6def2
Commit
aba6def2
authored
6 months ago
by
Renaud Boyer
Browse files
Options
Downloads
Patches
Plain Diff
tests: Fix storage instantiation deprecated args
parent
ecdcd3cb
No related branches found
No related tags found
1 merge request
!1318
tests: Reduce the number of warnings raised
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
swh/web/config.py
+3
-5
3 additions, 5 deletions
swh/web/config.py
swh/web/tests/data.py
+1
-3
1 addition, 3 deletions
swh/web/tests/data.py
with
4 additions
and
8 deletions
swh/web/config.py
+
3
−
5
View file @
aba6def2
...
...
@@ -128,9 +128,7 @@ DEFAULT_CONFIG = {
"
dict
"
,
{
"
cls
"
:
"
remote
"
,
"
args
"
:
{
"
url
"
:
"
http://127.0.0.1:5005/
"
,
},
"
url
"
:
"
http://127.0.0.1:5005/
"
,
},
),
"
scheduler
"
:
(
"
dict
"
,
{
"
cls
"
:
"
remote
"
,
"
url
"
:
"
http://127.0.0.1:5008/
"
}),
...
...
@@ -227,7 +225,7 @@ DEFAULT_CONFIG = {
swhweb_config
:
Dict
[
str
,
Any
]
=
{}
def
get_config
(
config_file
=
"
web/web
"
):
def
get_config
(
config_file
:
str
=
"
web/web
"
)
->
Dict
[
str
,
Any
]
:
"""
Read the configuration file `config_file`.
If an environment variable SWH_CONFIG_FILENAME is defined, this
...
...
@@ -240,7 +238,6 @@ def get_config(config_file="web/web"):
configuration.
"""
if
not
swhweb_config
:
config_filename
=
os
.
environ
.
get
(
"
SWH_CONFIG_FILENAME
"
)
if
config_filename
:
...
...
@@ -259,6 +256,7 @@ def get_config(config_file="web/web"):
)
swhweb_config
[
"
scheduler
"
]
=
get_scheduler
(
**
swhweb_config
[
"
scheduler
"
])
swhweb_config
[
"
counters
"
]
=
get_counters
(
**
swhweb_config
[
"
counters
"
])
return
swhweb_config
...
...
This diff is collapsed.
Click to expand it.
swh/web/tests/data.py
+
1
−
3
View file @
aba6def2
...
...
@@ -52,11 +52,9 @@ _TEST_INDEXER_BASE_CONFIG = {
"
storage
"
:
{
"
cls
"
:
"
memory
"
},
"
objstorage
"
:
{
"
cls
"
:
"
memory
"
,
"
args
"
:
{},
},
"
indexer_storage
"
:
{
"
cls
"
:
"
memory
"
,
"
args
"
:
{},
},
}
...
...
@@ -439,7 +437,7 @@ def _init_tests_data():
if
content
.
sha1
in
content_path
:
path
=
content_path
[
content
.
sha1
]
cnt_data
=
storage
.
content_get_data
(
content
.
sha1
)
cnt_data
=
storage
.
content_get_data
(
{
"
sha1
"
:
content
.
sha1
}
)
assert
cnt_data
is
not
None
mimetype
,
encoding
=
get_mimetype_and_encoding_for_content
(
cnt_data
)
_
,
_
,
cnt_data
=
re_encode_content
(
mimetype
,
encoding
,
cnt_data
)
...
...
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