diff --git a/README.rst b/README.rst index 26e0ae3..64f214c 100644 --- a/README.rst +++ b/README.rst @@ -2,8 +2,8 @@ ================================================== ``pymorize`` is a Python package to simplify the standardization of output into the Climate Model Output Rewriter (CMOR) standard. -.. image:: https://github.com/pgierz/pymorize/actions/workflows/CI-test.yaml/badge.svg - :target: https://github.com/pgierz/pymorize/actions/workflows/CI-test.yaml +.. image:: https://github.com/esm-tools/pymorize/actions/workflows/CI-test.yaml/badge.svg + :target: https://github.com/esm-tools/pymorize/actions/workflows/CI-test.yaml .. image:: https://img.shields.io/pypi/v/pymorize.svg :target: https://pypi.python.org/pypi/pymorize :alt: Latest PyPI version @@ -38,4 +38,4 @@ Licence Authors ------- -`pymorize` was written by `Paul Gierz `_. +``pymorize`` was written by `Paul Gierz `_, `Pavan Siligam `_. diff --git a/src/pymorize/generic/__init__.py b/src/pymorize/generic/__init__.py index 7b54dca..3fa21cc 100644 --- a/src/pymorize/generic/__init__.py +++ b/src/pymorize/generic/__init__.py @@ -1,3 +1,4 @@ +from datetime import datetime from pathlib import Path import xarray as xr diff --git a/tests/test_sample.py b/tests/test_sample.py deleted file mode 100644 index 2df4e80..0000000 --- a/tests/test_sample.py +++ /dev/null @@ -1,16 +0,0 @@ -# Sample Test passing with nose and pytest -import os - -import pytest - -from pymorize.generic import CMORizer - - -@pytest.fixture -def fesom_sample(): - return os.path.join(os.path.dirname(__file__), "fesom_sample.yaml") - - -def test_create_cmorizer_from_yaml(fesom_sample): - with open(fesom_sample, "r") as f: - cmor_engine = CMORizer.from_yaml(f)