From 8bd551115cbe3eb89267fedaf8a191a3880f9d77 Mon Sep 17 00:00:00 2001 From: John Chilton <jmchilton@gmail.com> Date: Mon, 13 May 2019 10:20:07 -0400 Subject: [PATCH] Revert empty input testing, it really probably should cause a failure. --- pulsar/client/test/check.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pulsar/client/test/check.py b/pulsar/client/test/check.py index 5935c9c4..46692613 100644 --- a/pulsar/client/test/check.py +++ b/pulsar/client/test/check.py @@ -208,7 +208,10 @@ def run(options): client_inputs = [] client_inputs.append(ClientInput(temp_input_path, CLIENT_INPUT_PATH_TYPES.INPUT_PATH)) client_inputs.append(ClientInput(temp_input_path, CLIENT_INPUT_PATH_TYPES.INPUT_PATH)) - client_inputs.append(ClientInput(empty_input, CLIENT_INPUT_PATH_TYPES.INPUT_PATH)) + # Reverting empty input handling added in: + # https://github.com/galaxyproject/pulsar/commit/2fb36ba979cf047a595c53cdef833cae79cbb380 + # Seems like it really should cause a failure. + # client_inputs.append(ClientInput(empty_input, CLIENT_INPUT_PATH_TYPES.INPUT_PATH)) client_inputs.append(ClientInput(os.path.join(temp_directory, "dataset_0_files"), CLIENT_INPUT_PATH_TYPES.INPUT_EXTRA_FILES_PATH)) client_inputs.append(ClientInput(temp_input_metadata_path, CLIENT_INPUT_PATH_TYPES.INPUT_METADATA_PATH)) output_files = [ -- GitLab