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.
🚀 Feature
Update conda environment if its outdated compared to the
environment.yml
: Previously, Jupyter notebooks failed to import libraries that had been added lately. An already existing Conda environment "codegraph" was sufficient, even it was outdated. Now, it will automatically be updated if necessary so that there are no more import errors.Add PREPARE_CONDA_ENVIRONMENT to skip Conda environment setup: Previously, Conda environment activation was skipped when the
codegraph
environment was already active. Now,PREPARE_CONDA_ENVIRONMENT="false
needs to be set additionally to explicitly skip that part. This is needed in GitHub Action pipelines becauseconda init
doesn't work as expected but is taken care of by setup-miniconda.Introduce script testing: The first (for now framework-free) script test is implemented in the pipeline 🎉.
⚙️ Optimization
--paths
are now validated🛠 Fix