Skip to content

Commit 90eede9

Browse files
committed
Development: Improve sandbox documentation for non-conda users
1 parent 3c828e5 commit 90eede9

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ Creating the streamz conda environment can be achieved by simply running ```cond
88

99
### Using Conda Environment
1010
The streamz conda environment can be activated by running ```conda activate streamz_dev```
11+
12+
### Run Software Tests
13+
```shell
14+
uv pip install --editable=.
15+
uv pip install -r requirements-test.txt
16+
pytest -vvv
17+
```

requirements-test.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# That's a minimal set of packages to satisfy ~1000 test cases
2+
# of the whole test suite. See also `./ci/*.yml` for full conda
3+
# environment descriptions.
4+
5+
dask[array,distributed]
6+
flaky
7+
ipywidgets
8+
pandas
9+
pyarrow
10+
pytest<9
11+
requests

0 commit comments

Comments
 (0)