We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05250dc commit eabe7c7Copy full SHA for eabe7c7
fair_eva/api/rda.py
@@ -1352,7 +1352,10 @@ def rda_all(body, eva):
1352
result_points = 10
1353
num_of_tests = 10
1354
1355
- api_config = eva.config.get("Generic", "api_config", fallback="fair-api.yaml")
+ import fair_eva
1356
+
1357
+ api_config_file = eva.config.get("Generic", "api_config", fallback="fair-api.yaml")
1358
+ api_config = os.path.join(os.path.dirname(fair_eva.__file__), api_config_file)
1359
try:
1360
with open(api_config, "r") as f:
1361
documents = yaml.full_load(f)
0 commit comments