Skip to content

Commit 5df3d81

Browse files
Update remaining acme_diags/ refs to e3sm_diags/ (#530)
1 parent d70d228 commit 5df3d81

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@
1515
"python.testing.unittestArgs": [
1616
"-v",
1717
"-s",
18-
"./tests/acme_diags",
18+
"./tests/e3sm_diags",
1919
"-p",
2020
"test_*.py"
2121
],
2222
"python.testing.pytestEnabled": false,
23-
"python.testing.nosetestsEnabled": false,
2423
"python.testing.unittestEnabled": true
2524
}

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ignore =
1111
max-line-length = 119
1212
max-complexity = 18
1313
per-file-ignores =
14-
acme_diags/acme_diags_driver.py:E402
14+
e3sm_diags/e3sm_diags_driver.py:E402
1515
exclude =
1616
.tox,
1717
.git,
@@ -34,7 +34,7 @@ force_grid_wrap=0
3434
use_parentheses=True
3535
line_length=88
3636
skip=
37-
acme_diags/acme_diags_driver.py
37+
e3sm_diags/e3sm_diags_driver.py
3838

3939
[pycodestyle]
4040
max-line-length = 119

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ tag_template = "v{new_version}"
2626
src = "setup.py"
2727

2828
[[file]]
29-
src = "acme_diags/__init__.py"
29+
src = "e3sm_diags/__init__.py"
3030

3131
[[file]]
3232
src = "conda/meta.yaml"

tests/integration/test_all_sets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def count_images(directory, file_type="png"):
1717

1818
class TestAllSets(unittest.TestCase):
1919
def get_results_dir(self, output):
20-
"""Given output from acme_diags_driver, extract the path to results_dir."""
20+
"""Given output from e3sm_diags_driver, extract the path to results_dir."""
2121
for line in output:
2222
match = re.search("Viewer HTML generated at (.*)viewer.*.html", line)
2323
if match:

tests/integration/test_diags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
def get_results_dir(output_list):
24-
"""Given output from acme_diags_driver, extract the path to results_dir."""
24+
"""Given output from e3sm_diags_driver, extract the path to results_dir."""
2525
for line in output_list:
2626
match = re.search("Viewer HTML generated at (.*)viewer.*.html", line)
2727
if match:

0 commit comments

Comments
 (0)