Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [macOS, ubuntu]
inlcude:
- os: macos-latest
Expand Down
1 change: 0 additions & 1 deletion continuous_integration/environment-actions-3.10.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: testenv
channels:
- conda-forge
- defaults
dependencies:
- arm_pyart
- pip
Expand Down
1 change: 0 additions & 1 deletion continuous_integration/environment-actions-3.11.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: testenv
channels:
- conda-forge
- defaults
dependencies:
- arm_pyart
- pip
Expand Down
3 changes: 1 addition & 2 deletions continuous_integration/environment-actions-3.12.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: testenv
channels:
- conda-forge
- defaults
dependencies:
- arm_pyart
- pip
Expand All @@ -20,6 +19,6 @@ dependencies:
- cmweather
- jax
- jaxopt
- tensorflow=2.17.0
- tensorflow
- tensorflow-probability
- tf-keras
3 changes: 1 addition & 2 deletions continuous_integration/environment-actions-3.13.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name: testenv
channels:
- conda-forge
- defaults
dependencies:
- arm_pyart
- pip
- numpy<2.2.0
- numpy
- scipy
- matplotlib
- netcdf4
Expand Down
21 changes: 21 additions & 0 deletions continuous_integration/environment-actions-3.14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: testenv
channels:
- conda-forge
dependencies:
- arm_pyart
- pip
- numpy
- scipy
- matplotlib
- netcdf4
- pytest
- pytest-mpl
- pytest-cov
- cartopy
- cfgrib
- eccodes
- dask
- distributed
- cmweather
- jax
- jaxopt
1 change: 0 additions & 1 deletion doc/environment_docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: pydda-docs
channels:
- conda-forge
- defaults
dependencies:
- python
- pip
Expand Down
Binary file modified pydda/tests/baseline/test_plot_horiz_xsection_barbs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_xsection_barbs_map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_xsection_quiver.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_xsection_quiver_map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_xsection_streamlines.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_xz_xsection_barbs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_xz_xsection_quiver.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_yz_xsection_barbs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pydda/tests/baseline/test_plot_horiz_yz_xsection_quiver.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions pydda/tests/test_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import cartopy.crs as ccrs


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xsection_barbs():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -30,7 +30,7 @@ def test_plot_horiz_xsection_barbs():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xz_xsection_barbs():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -51,7 +51,7 @@ def test_plot_horiz_xz_xsection_barbs():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_yz_xsection_barbs():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -72,7 +72,7 @@ def test_plot_horiz_yz_xsection_barbs():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xsection_barbs_map():
berr_grid = pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0)
cpol_grid = pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR1)
Expand All @@ -92,7 +92,7 @@ def test_plot_horiz_xsection_barbs_map():
return fig


@pytest.mark.mpl_image_compare(tolerance=60)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xsection_streamlines():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -111,7 +111,7 @@ def test_plot_horiz_xsection_streamlines():
return fig


@pytest.mark.mpl_image_compare(tolerance=60)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xsection_streamlines_map():
berr_grid = pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0)
cpol_grid = pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR1)
Expand All @@ -130,7 +130,7 @@ def test_plot_horiz_xsection_streamlines_map():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xz_xsection_streamlines():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -150,7 +150,7 @@ def test_plot_horiz_xz_xsection_streamlines():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_yz_xsection_streamlines():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -169,7 +169,7 @@ def test_plot_horiz_yz_xsection_streamlines():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xsection_quiver():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -192,7 +192,7 @@ def test_plot_horiz_xsection_quiver():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xsection_quiver_map():
berr_grid = pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0)
cpol_grid = pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR1)
Expand All @@ -213,7 +213,7 @@ def test_plot_horiz_xsection_quiver_map():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_xz_xsection_quiver():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand All @@ -237,7 +237,7 @@ def test_plot_horiz_xz_xsection_quiver():
return fig


@pytest.mark.mpl_image_compare(tolerance=50)
@pytest.mark.mpl_image_compare(tolerance=100)
def test_plot_horiz_yz_xsection_quiver():
Grids = [
pydda.io.read_grid(pydda.tests.EXAMPLE_RADAR0),
Expand Down
Loading