You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test is passing locally, but fails on GitHub actions CI with the error KeyError: 'qserver_tests'. It would be useful to have explanation why both attempts to instantiate the databroker or access the catalog fail, while the test test_fixture_re_manager_cmd_2, in which the Data Broker is instantiated in a different process, reliably succeeds:
# Try to access the catalog in 'standard' way
from databroker import catalog
assert list(catalog[db_catalog["catalog_name"]]) == list(db_catalog["catalog"])
# Try to instantiated the Data Broker
from databroker import Broker
Broker.named(db_catalog["catalog_name"])
The text was updated successfully, but these errors were encountered:
The test is passing locally, but fails on GitHub actions CI with the error
KeyError: 'qserver_tests'
. It would be useful to have explanation why both attempts to instantiate the databroker or access the catalog fail, while the testtest_fixture_re_manager_cmd_2
, in which the Data Broker is instantiated in a different process, reliably succeeds:The text was updated successfully, but these errors were encountered: