Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Jan 17, 2021
1 parent 70392ca commit c59e41d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: ["ubuntu-latest", "macos-latest", "windows-latest"]
platform: ["ubuntu-latest", "macos-latest"] #, "windows-latest"]
python-version: ["3.8"] #["3.6", "3.7", "3.8"] #, "3.9"]

name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
Expand Down
4 changes: 3 additions & 1 deletion tests/test_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@

import climetlab as cml

# TODO: choose a smaller dataset


def test_numpy_1():
ds = cml.load_dataset("weather-bench")
z500 = ds.to_xarray()
z = z500.sel({'time': '1979-01-01'}).z.values
z = z500.sel({"time": "1979-01-01"}).z.values
cml.plot_map(z[0], metadata=z500.z)


Expand Down

0 comments on commit c59e41d

Please sign in to comment.