Skip to content
Snippets Groups Projects
Commit 8a4f17a3 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

fix(tests): update local dirs

parent f52d8a3f
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,13 @@ from extraction.core.functions.loaders import ( ...@@ -7,7 +7,13 @@ from extraction.core.functions.loaders import (
load_funs, load_funs,
load_redfuns, load_redfuns,
) )
from extraction.examples import data from extraction import local_data_loaders as data
from importlib_resources import files
# FUTURETODO can be replaced by importlib.resources.files('aliby') after upgrading to 3.11
files_dir = files("aliby")
data_dir = files_dir.parent.parent / "tests" / "agora" / "data"
dsets1z = data.load_1z() dsets1z = data.load_1z()
dsets = data.load() dsets = data.load()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment