Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
not test on dataset creation
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed Feb 7, 2024
1 parent 3ff1bc0 commit ffafda0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ecml_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.

__version__ = "0.3.3"
__version__ = "0.4.0"
5 changes: 5 additions & 0 deletions tests/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
import json
import os

import pytest

from ecml_tools.create import Creator
from ecml_tools.data import open_dataset

Expand Down Expand Up @@ -102,14 +104,17 @@ def _test_create(name):
compare_zarr(reference, output)


@pytest.mark.skip(reason="Test not running everywhere.")
def test_create_concat():
_test_create("create-concat")


@pytest.mark.skip(reason="Test not running everywhere.")
def test_create_join():
_test_create("create-join")


@pytest.mark.skip(reason="Test not running everywhere.")
def test_create_pipe():
_test_create("create-pipe")

Expand Down

0 comments on commit ffafda0

Please sign in to comment.