File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ dependencies:
29
29
- pip
30
30
- pre-commit
31
31
- pseudonetcdf
32
- # - pydap # https://github.com/pydap/pydap/pull/210
32
+ - pydap
33
33
# - pynio # Not available on Windows
34
34
- pytest
35
35
- pytest-cov
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ dependencies:
33
33
- pooch
34
34
- pre-commit
35
35
- pseudonetcdf
36
- # - pydap # https://github.com/pydap/pydap/pull/210
36
+ - pydap
37
37
# - pynio: not compatible with netCDF4>1.5.3; only tested in py37-bare-minimum
38
38
- pytest
39
39
- pytest-cov
Original file line number Diff line number Diff line change @@ -4000,7 +4000,13 @@ def test_session(self):
4000
4000
session = setup_session ("XarrayTestUser" , "Xarray2017" )
4001
4001
with mock .patch ("pydap.client.open_url" ) as mock_func :
4002
4002
xr .backends .PydapDataStore .open ("http://test.url" , session = session )
4003
- mock_func .assert_called_with ("http://test.url" , session = session )
4003
+ mock_func .assert_called_with (
4004
+ url = "http://test.url" ,
4005
+ application = None ,
4006
+ session = session ,
4007
+ output_grid = True ,
4008
+ timeout = 120 ,
4009
+ )
4004
4010
4005
4011
4006
4012
@requires_scipy
You can’t perform that action at this time.
0 commit comments