File: CLAUDE.md

package info (click to toggle)
python-xarray 2025.09.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,552 kB
  • sloc: python: 115,929; makefile: 260; sh: 47
file content (21 lines) | stat: -rw-r--r-- 347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# xarray development setup

## Setup

```bash
uv sync
```

## Run tests

```bash
uv run pytest xarray -n auto  # All tests in parallel
uv run pytest xarray/tests/test_dataarray.py  # Specific file
```

## Linting & type checking

```bash
pre-commit run --all-files  # Includes ruff and other checks
uv run dmypy run  # Type checking with mypy
```