Skip to content
Snippets Groups Projects
Commit 6081f726 authored by François  LAURENT's avatar François LAURENT
Browse files

data/interim cleared prior to predict

parent d2e51c18
No related branches found
No related tags found
No related merge requests found
Pipeline #85601 passed
......@@ -54,6 +54,11 @@ function push(model::Backends, file::String; clean=true, metadata=true)
rm(raw_data_dir; recursive=true)
catch
end
interim_data_dir = joinpath(backend_dir, "data/interim", instance)
try
rm(interim_data_dir; recursive=true)
catch
end
processed_data_dir = joinpath(backend_dir, "data/processed", instance)
try
rm(processed_data_dir; recursive=true)
......
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