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)