File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
src/simcore_service_webserver/licenses
tests/unit/with_dbs/04/licenses Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ import datetime
12from typing import Annotated
23
34from pydantic import Field
78
89
910class LicensesSettings (BaseCustomSettings ):
11+ LICENSES_SYNCER_ENABLED : bool
12+ LICENSES_SYNCER_PERIODICITY : datetime .timedelta
13+
14+ # Registered licensed resources:
1015 LICENSES_ITIS_VIP : Annotated [
1116 ItisVipSettings | None , Field (description = "Settings for VIP license models" )
1217 ]
13- # other licenses resources come here
18+
19+ # other licensed resources come here ...
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def test_pre_validator_feature_descriptor_to_dict():
3131
3232@pytest .fixture (scope = "session" )
3333def fake_api_base_url () -> str :
34- return "https://testserver"
34+ return "https://testserver-itis-vip.xyz "
3535
3636
3737@pytest .fixture
You can’t perform that action at this time.
0 commit comments