Skip to content

Commit 97fa48b

Browse files
committed
fremorizer --> fremor
1 parent 0d3c8e1 commit 97fa48b

7 files changed

Lines changed: 11 additions & 11 deletions

fremor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
``fremor run`` operations- mixing and matching GFDL's and FRE's conventions to CMOR's expectations, so that
88
participation in model-intercomparison projects may be eased. For more usage details, see the project README.md, the
99
FRE documentation at https://noaa-gfdl.readthedocs.io/projects/fre-cli/en/latest/, PCMDI's CMOR module documentation at
10-
https://cmor.llnl.gov/, and of course ``fremor``'s documentation at https://fremorizer.readthedocs.io/en/stable/.
10+
https://cmor.llnl.gov/, and of course ``fremor``'s documentation at https://fremor.readthedocs.io/en/stable/.
1111
1212
.. note:: this text is set by ``fremor/__init__.py``'s docstring. Importing ``fremor`` sets the version attribute, and sets
1313
up a ``fre_logger``

fremor/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838

3939

4040
@click.version_option(
41-
package_name = 'fremorizer',
41+
package_name = 'fremor',
4242
version = version
4343
)
4444
@click.group(
4545
help = click.style(
46-
'fremor is the main CLI for fremorizer. it houses the cmor subcommands.',
46+
'fremor is the main CLI for fremor. it houses the cmor subcommands.',
4747
fg = 'cyan')
4848
)
4949
@click.option( '-v', '--verbose', default = 0, required = False, count = True, type = int,

fremor/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
}
8585

8686
_CMIP7_EXP_CONFIG_DATA = {
87-
'#_TESTING_ONLY': ' ***** This is for unit-test functionality of NOAA-GDFL\'s fremorizer module for CMIP7, they do not reflect values used in actual production *****',
87+
'#_TESTING_ONLY': ' ***** This is for unit-test functionality of NOAA-GDFL\'s fremor module for CMIP7, they do not reflect values used in actual production *****',
8888
'contact ': 'MIP participant mipmember@foobar.c.om',
8989
'comment': 'additional important information not fitting into other fields can be placed here',
9090
'license_id': 'CC-BY-4.0',

fremor/tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
CLI Tests for fremor subcommands
33
4-
Tests the command-line-interface calls for the fremor CLI (fremorizer package).
4+
Tests the command-line-interface calls for the fremor CLI (fremor package).
55
Each tool generally gets 3 tests:
66
77
- fremor $tool, checking for exit code 0 or 2 (fails if cli isn't configured right)

fremor/tests/test_cmor_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
tests for fremorizer helper functions in cmor_helpers
2+
tests for fremor helper functions in cmor_helpers
33
"""
44

55
import json

fremor/tests/test_cmor_run_subtool_cmip7_further_examples.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
By default pytest removes temp directories after the session. To keep
1010
them around for debugging, run::
1111
12-
pytest --basetemp=/tmp/fremorizer-debug -k test_case_cmip7 -x
12+
pytest --basetemp=/tmp/fremor-debug -k test_case_cmip7 -x
1313
14-
Output files will then persist under ``/tmp/fremorizer-debug``.
14+
Output files will then persist under ``/tmp/fremor-debug``.
1515
"""
1616

1717
from datetime import date
@@ -165,7 +165,7 @@ def test_case_cmip7( # pylint: disable=too-many-arguments,too-many-positional-a
165165
## native-grid ocean tests: prevent gold statics lookup from finding /archive files
166166
#if opt_var_name == 'sos':
167167
# monkeypatch.setattr(
168-
# 'fremorizer.cmor_mixer.find_gold_ocean_statics_file',
168+
# 'fremor.cmor_mixer.find_gold_ocean_statics_file',
169169
# lambda **kw: None,
170170
# )
171171

fremor/tests/test_cmor_run_subtool_further_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
By default pytest removes temp directories after the session. To keep
99
them around for debugging, run::
1010
11-
pytest --basetemp=/tmp/fremorizer-debug -k test_case_cmip6 -x
11+
pytest --basetemp=/tmp/fremor-debug -k test_case_cmip6 -x
1212
13-
Output files will then persist under ``/tmp/fremorizer-debug``.
13+
Output files will then persist under ``/tmp/fremor-debug``.
1414
'''
1515

1616
from datetime import date

0 commit comments

Comments
 (0)