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.
2 parents f3f855f + c038364 commit 03b0973Copy full SHA for 03b0973
CONTRIBUTING.md
@@ -8,3 +8,9 @@ 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
+pip install --editable=. --requirement=requirements-test.txt
15
+pytest -vvv
16
+```
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