Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion parcels/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from .converters import *
from .exampledata_utils import *
from .global_statics import *
from .interpolation_utils import *
from .loggers import *
from .statuscodes import *
Expand Down
42 changes: 0 additions & 42 deletions parcels/tools/global_statics.py

This file was deleted.

15 changes: 0 additions & 15 deletions tests/test_kernel_execution.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import uuid

import numpy as np
import pytest

import parcels
from parcels import (
AdvectionRK4,
FieldOutOfBoundError,
Expand All @@ -16,18 +13,6 @@
from tests.utils import create_fieldset_unit_mesh


@pytest.fixture()
def parcels_cache(monkeypatch, tmp_path_factory):
"""Dedicated folder parcels used to store cached Kernel C code/libraries and log files."""
tmp_path = tmp_path_factory.mktemp(f"c-code-{uuid.uuid4()}")

def fake_get_cache_dir():
return tmp_path

monkeypatch.setattr(parcels.kernel, "get_cache_dir", fake_get_cache_dir)
yield tmp_path


@pytest.fixture
def fieldset_unit_mesh():
return create_fieldset_unit_mesh()
Expand Down
Loading