From e1638dce16dfe2854bf8277deafd1fc2b5dc7c63 Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Fri, 7 Aug 2020 06:17:32 -0700 Subject: [PATCH] fix the slow tests doc (#6167) remove unnecessary duplication wrt `RUN_SLOW=yes` --- CONTRIBUTING.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 37279441e6..a1e3ac2779 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -238,18 +238,7 @@ and for the examples: $ pip install -r examples/requirements.txt # only needed the first time $ python -m pytest -n auto --dist=loadfile -s -v ./examples/ ``` - -and for the slow tests: - -```bash -RUN_SLOW=yes python -m pytest -n auto --dist=loadfile -s -v ./tests/ -``` -or -```python -RUN_SLOW=yes python -m pytest -n auto --dist=loadfile -s -v ./tests/ -``` - -In fact, that's how `make test` and `make test-examples` are implemented! +In fact, that's how `make test` and `make test-examples` are implemented (sans the `pip install` line)! You can specify a smaller set of tests in order to test only the feature you're working on.