Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Rename all shell workflows to uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreso committed Nov 12, 2020
1 parent 65c324b commit 54f9c93
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions python/tests/share/test_shell_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_shell_script_jobs_availability(self):
for job in installed_jobs:
exe = job.get_executable()
if "shell_scripts" in exe:
fm_shell_jobs[job.name().lower()] = exe
fm_shell_jobs[job.name().upper()] = exe

list_from_content = res_config.ert_workflow_list
wf_shell_jobs = {}
Expand All @@ -30,15 +30,15 @@ def test_shell_script_jobs_names(self):
config_file = self.createTestPath("local/simple_config/minimum_config")

shell_job_names = [
"delete_file",
"delete_directory",
"copy_directory",
"make_symlink",
"move_file",
"make_directory",
"careful_copy_file",
"symlink",
"copy_file",
"DELETE_FILE",
"DELETE_DIRECTORY",
"COPY_DIRECTORY",
"MAKE_SYMLINK",
"MOVE_FILE",
"MAKE_DIRECTORY",
"CAREFUL_COPY_FILE",
"SYMLINK",
"COPY_FILE",
]

res_config = ResConfig(config_file)
Expand Down

0 comments on commit 54f9c93

Please sign in to comment.