From 19b3182f4e890a7c1b65da5e2daff3ee8905f1c6 Mon Sep 17 00:00:00 2001 From: Eric Holscher <25510+ericholscher@users.noreply.github.com> Date: Thu, 15 Dec 2022 16:05:48 -0800 Subject: [PATCH 1/2] Add subset of tests to testing docs --- docs/dev/tests.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/dev/tests.rst b/docs/dev/tests.rst index a789c7cd082..7aef12d565d 100644 --- a/docs/dev/tests.rst +++ b/docs/dev/tests.rst @@ -47,6 +47,13 @@ To target a specific environment: .. prompt:: bash tox -e py310 + +To run a subset of tests: + +.. prompt:: bash + + tox -e py310 -- -k test_celery + The ``tox`` configuration has the following environments configured. You can target a single environment to limit the test suite: From f6ad5731952a692c6cf1ecffc31e936822ba3886 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Thu, 15 Dec 2022 16:28:40 -0800 Subject: [PATCH 2/2] Fix lint --- docs/dev/tests.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/dev/tests.rst b/docs/dev/tests.rst index 7aef12d565d..f1d4b708fd2 100644 --- a/docs/dev/tests.rst +++ b/docs/dev/tests.rst @@ -47,14 +47,13 @@ To target a specific environment: .. prompt:: bash tox -e py310 - + To run a subset of tests: .. prompt:: bash tox -e py310 -- -k test_celery - The ``tox`` configuration has the following environments configured. You can target a single environment to limit the test suite: