Skip to content

Commit

Permalink
test-all (#283)
Browse files Browse the repository at this point in the history
* test-all

* Compat for distributed changes.

xref dask/distributed#3830,
dask/distributed#3934

* test-all

* Avoid warning in __del__

* try close

* pin to pytest-asyncio==0.12.0

* test-all

* specify local directory

* test-all
  • Loading branch information
TomAugspurger authored Jul 15, 2020
1 parent 5ae7c8a commit 7becded
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion continuous_integration/docker/hadoop/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pip install \
sqlalchemy \
skein \
pytest \
pytest-asyncio
pytest-asyncio==0.12.0

pushd dask-gateway
python setup.py develop
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/docker/pbs/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pip install \
traitlets \
sqlalchemy \
pytest \
pytest-asyncio
pytest-asyncio==0.12.0

pushd dask-gateway
python setup.py develop
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/docker/slurm/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pip install \
traitlets \
sqlalchemy \
pytest \
pytest-asyncio
pytest-asyncio==0.12.0

pushd dask-gateway
python setup.py develop
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pip install -U \
jupyterhub \
notebook \
pytest \
pytest-asyncio \
pytest-asyncio==0.12.0 \
sqlalchemy \
tornado \
traitlets \
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/kubernetes/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pip install -U \
distributed \
flake8 \
pytest \
pytest-asyncio \
pytest-asyncio==0.12.0 \
kubernetes-asyncio \
sqlalchemy \
traitlets
Expand Down
2 changes: 1 addition & 1 deletion dask-gateway/dask_gateway/dask_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ async def start_worker(
nthreads=1,
memory_limit="auto",
scheduler_address=None,
local_directory="",
local_directory=None,
nanny=True,
):
loop = IOLoop.current()
Expand Down
2 changes: 1 addition & 1 deletion demo/files/root/install-and-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pip install \
sqlalchemy \
skein \
pytest \
pytest-asyncio
pytest-asyncio==0.12.0

# Install dask-gateway
pushd dask-gateway
Expand Down

0 comments on commit 7becded

Please sign in to comment.