File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ def test_cmd_instances(monkeypatch):
1919 "dandi-staging:\n "
2020 " api: https://api-staging.dandiarchive.org/api\n "
2121 " gui: https://gui-staging.dandiarchive.org\n "
22+ "ember:\n "
23+ " api: https://api-dandi.emberarchive.org/api\n "
24+ " gui: https://dandi.emberarchive.org\n "
25+ "ember-staging:\n "
26+ " api: https://api-dandi-staging.emberarchive.org/api\n "
27+ " gui: https://dandi-staging.emberarchive.org\n "
2228 "linc:\n "
2329 " api: https://api.lincbrain.org/api\n "
2430 " gui: https://lincbrain.org\n "
Original file line number Diff line number Diff line change @@ -141,7 +141,17 @@ def urls(self) -> Iterator[str]:
141141 "linc-staging" ,
142142 "https://staging.lincbrain.org" ,
143143 "https://staging-api.lincbrain.org/api" ,
144- )
144+ ),
145+ "ember" : DandiInstance (
146+ "ember" ,
147+ "https://dandi.emberarchive.org" ,
148+ "https://api-dandi.emberarchive.org/api" ,
149+ ),
150+ "ember-staging" : DandiInstance (
151+ "ember-staging" ,
152+ "https://dandi-staging.emberarchive.org" ,
153+ "https://api-dandi-staging.emberarchive.org/api" ,
154+ ),
145155}
146156# to map back url: name
147157known_instances_rev = {
Original file line number Diff line number Diff line change @@ -27,4 +27,10 @@ Example output:
2727 gui : https://staging.lincbrain.org
2828 linc :
2929 api : https://api.lincbrain.org/api
30- gui : https://lincbrain.org
30+ gui : https://lincbrain.org
31+ ember-staging :
32+ api : https://api-dandi-staging.emberarchive.org/api
33+ gui : https://dandi-staging.emberarchive.org
34+ ember :
35+ api : https://api-dandi.emberarchive.org/api
36+ gui : https://dandi.emberarchive.org
You can’t perform that action at this time.
0 commit comments