We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c828e5 commit 90eede9Copy full SHA for 90eede9
CONTRIBUTING.md
@@ -8,3 +8,10 @@ Creating the streamz conda environment can be achieved by simply running ```cond
8
9
### Using Conda Environment
10
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
@@ -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
+pandas
+pyarrow
+pytest<9
+requests
0 commit comments