New Core library - #305
Draft
JensKrumsieck wants to merge 115 commits into
Draft
Conversation
…bers e.g. python3.11 or modukle syntax
…ing on env::current_dir
…vs by explaining the modules
-- AI assisted refactor
|
|
||
| fn save_workflow_name(instance_url: &str, name: &str) -> anyhow::Result<()> { | ||
| let file_path = status_file_path(); | ||
| let mut workflows: HashMap<String, Vec<String>> = if file_path.exists() { |
| fn save_workflow_name(instance_url: &str, name: &str) -> anyhow::Result<()> { | ||
| let file_path = status_file_path(); | ||
| let mut workflows: HashMap<String, Vec<String>> = if file_path.exists() { | ||
| let content = std::fs::read_to_string(&file_path)?; |
| if !entry.contains(&name.to_string()) { | ||
| entry.push(name.to_string()); | ||
| } | ||
| std::fs::write(&file_path, serde_json::to_string_pretty(&workflows)?)?; |
|
|
||
| fn get_saved_workflows(instance_url: &str) -> Vec<String> { | ||
| let file_path = status_file_path(); | ||
| if !file_path.exists() { |
| if !file_path.exists() { | ||
| return vec![]; | ||
| } | ||
| let content = std::fs::read_to_string(&file_path).unwrap_or_default(); |
execute_integration_test.rs and graph.rs tests each use their own tempdir/explicit outdir and never touch cwd or process env vars, so they can run in parallel like the equivalent tool_integration_test.rs tests already do. Also removes the now-dead `fstest::serial_test` import in submodule.rs. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
JensKrumsieck
force-pushed
the
core_library
branch
from
August 6, 2026 11:02
1df891b to
929ed03
Compare
Co-authored-by: aleidel <aleidel1239897@gmail.de>
Co-authored-by: aleidel <aleidel1239897@gmail.de>
#272 Co-authored-by: aleidel <aleidel1239897@gmail.com>
this is where the magic happens, runner sees ontology and is able to run transitive checks
Closed
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GOAL: Refactor core library which now is called
sciwinAuthoring
Execution
reana-cwl-clientwhich fixes Use CWL Reana Client #297commonwlandreanaRunnersrocratelibrary which allows to export RO-Crates (Provenance Run Crates) from local and remote which fixes Create Workflow Run RO-Crates #190SciWIn-Client
SciWIn-Studio
sciwin_studioMisc
anyhowin most places--debugflag to be extra verbose