Skip to content

Commit

Permalink
Make do_testing an optional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
danholdaway committed Nov 12, 2024
1 parent 7b074df commit 4ef4bcf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 3dfgat.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ output:
{% endif %}

# Optionally test the application
{% if test_reference_filename is defined %}
{% if do_testing | default(false) %}
test:
reference filename: {{test_reference_filename}}
{% if test_output_filename is defined %}
Expand Down
2 changes: 1 addition & 1 deletion 3dvar.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ output:
{% endif %}

# Optionally test the application
{% if do_testing %}
{% if do_testing | default(false) %}
test:
reference filename: {{test_reference_filename}}
{% if test_output_filename is defined %}
Expand Down
2 changes: 1 addition & 1 deletion local_ensemble_da.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ output variance posterior:
{% endif %}

# Optionally test the application
{% if do_testing %}
{% if do_testing | default(false) %}
test:
reference filename: {{test_reference_filename}}
{% if test_output_filename is defined %}
Expand Down
2 changes: 1 addition & 1 deletion local_ensemble_da_observer.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ output variance posterior:
{% endif %}

# Optionally test the application
{% if do_testing %}
{% if do_testing | default(false) %}
test:
reference filename: {{test_reference_filename}}
{% if test_output_filename is defined %}
Expand Down
2 changes: 1 addition & 1 deletion local_ensemble_da_solver.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ output variance posterior:
{% endif %}

# Optionally test the application
{% if do_testing %}
{% if do_testing | default(false) %}
test:
reference filename: {{test_reference_filename}}
{% if test_output_filename is defined %}
Expand Down

0 comments on commit 4ef4bcf

Please sign in to comment.