Fix test_run_gxtool_randomlines test on Galaxy dev branch#1373
Merged
mvdbeek merged 1 commit intogalaxyproject:masterfrom Jun 21, 2023
Merged
Fix test_run_gxtool_randomlines test on Galaxy dev branch#1373mvdbeek merged 1 commit intogalaxyproject:masterfrom
test_run_gxtool_randomlines test on Galaxy dev branch#1373mvdbeek merged 1 commit intogalaxyproject:masterfrom
Conversation
which was failing with:
```
E galaxy.tool_util.provided_metadata INFO 2023-06-19 12:49:16,823 [pN:main.1,p:15735,tN:LocalRunner.work_thread-0] One or more tool outputs is marked as failed ({'type': 'dataset', 'ext': 'data', 'dataset_id': 1, 'stderr': 'Unable to fetch file:///home/runner/work/planemo/planemo/tests/data/hello.txt\nCould not find handler for URI [file:///home/runner/work/planemo/planemo/tests/data/hello.txt]', 'failed': True}).
```
After galaxyproject/galaxy#15497 and
follow-up galaxyproject/galaxy#15794 ,
data upload using "file://" URLs is allowed only for Galaxy admins.
This adds a basic ``file_sources_conf.yml`` configuration file that
allows planemo to upload from the test data directory.
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.
which was failing with:
After galaxyproject/galaxy#15497 and follow-up galaxyproject/galaxy#15794 , data upload using "file://" URLs is allowed only for Galaxy admins. This adds a basic
file_sources_conf.ymlconfiguration file that allows planemo to upload from the test data directory.