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
51 changes: 26 additions & 25 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,43 +32,44 @@ jobs:
os: [ubuntu-latest]
python-version: ["3.9"]
pytest_args: [tests]
runtime-version: [upstream, latest, "0.2.1"]
runtime-version: [upstream]
# runtime-version: [upstream, latest, "0.2.1"]
include:
# Run stability tests on Python 3.8
- pytest_args: tests/stability
python-version: "3.8"
runtime-version: upstream
os: ubuntu-latest
- pytest_args: tests/stability
python-version: "3.8"
runtime-version: latest
os: ubuntu-latest
- pytest_args: tests/stability
python-version: "3.8"
runtime-version: "0.2.1"
os: ubuntu-latest
# - pytest_args: tests/stability
# python-version: "3.8"
# runtime-version: latest
# os: ubuntu-latest
# - pytest_args: tests/stability
# python-version: "3.8"
# runtime-version: "0.2.1"
# os: ubuntu-latest
# Run stability tests on Python 3.10
- pytest_args: tests/stability
python-version: "3.10"
runtime-version: upstream
os: ubuntu-latest
- pytest_args: tests/stability
python-version: "3.10"
runtime-version: latest
os: ubuntu-latest
- pytest_args: tests/stability
python-version: "3.10"
runtime-version: "0.2.1"
os: ubuntu-latest
# - pytest_args: tests/stability
# python-version: "3.10"
# runtime-version: latest
# os: ubuntu-latest
# - pytest_args: tests/stability
# python-version: "3.10"
# runtime-version: "0.2.1"
# os: ubuntu-latest
# Run stability tests on Python Windows and MacOS (latest py39 only)
- pytest_args: tests/stability
python-version: "3.9"
runtime-version: latest
os: windows-latest
- pytest_args: tests/stability
python-version: "3.9"
runtime-version: latest
os: macos-latest
# - pytest_args: tests/stability
# python-version: "3.9"
# runtime-version: latest
# os: windows-latest
# - pytest_args: tests/stability
# python-version: "3.9"
# runtime-version: latest
# os: macos-latest

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion ci/create_runtime_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def main():
requirements.append(
{
"pip": [
"git+https://github.com/dask/dask@main",
"git+https://github.com/dask/distributed@main",
"git+https://github.com/jrbourbeau/dask@nullable-config",
]
}
)
Expand Down
8 changes: 7 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,13 @@ def get_coiled_runtime_version():
return "unknown"


dask.config.set({"coiled.account": "dask-engineering"})
dask.config.set(
{
"coiled.account": "dask-engineering",
"dataframe.nullable_dtypes": True,
"dataframe.dtype_backend": "pyarrow",
}
)

COILED_RUNTIME_VERSION = get_coiled_runtime_version()
COILED_SOFTWARE_NAME = "package_sync"
Expand Down