From a1d7b01b0e4f6aa9a701bde0e85c819bf6506f60 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Thu, 7 Nov 2024 10:07:18 -0900 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Chuck Daniels --- docs/contributing/development.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/contributing/development.md b/docs/contributing/development.md index 7f5a21ad..1bd52211 100644 --- a/docs/contributing/development.md +++ b/docs/contributing/development.md @@ -40,12 +40,16 @@ Sessions defined in earthaccess/noxfile.py: sessions marked with * are selected, sessions marked with - are skipped. ``` + You can also run individual tasks (_sessions_ in `nox` parlance, hence the `-s` option below), like so: + ```bash nox -s integration-tests ``` + and pass options to the underlying session like: + ```bash nox -s integration-tests -- [ARGS] ```