From 643d08222936ed3e46cdaf2aa2da7ad0f9122c3d Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Thu, 9 Feb 2023 13:42:02 +0400 Subject: [PATCH] Update tests.md --- docs/contributing/tests.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributing/tests.md b/docs/contributing/tests.md index bccec310..e2b86583 100644 --- a/docs/contributing/tests.md +++ b/docs/contributing/tests.md @@ -22,10 +22,10 @@ defined in the [conftest.py](https://github.com/jupyter/docker-stacks/blob/main/ ## Unit tests -If you want to run a python script in one of our images, you could add a unit test. -You can do this by creating a `tests//units/` directory, if it doesn't already exist and put your file there. +You can add a unit test if you want to run a python script in one of our images. +You should create a `tests//units/` directory, if it doesn't already exist and put your file there. Files in this folder will be executed in the container when tests are run. -You could see an [example for the TensorFlow package here](https://github.com/jupyter/docker-stacks/blob/HEAD/tests/tensorflow-notebook/units/unit_tensorflow.py). +You can see an [example for the TensorFlow package here](https://github.com/jupyter/docker-stacks/blob/HEAD/tests/tensorflow-notebook/units/unit_tensorflow.py). ## Contributing New Tests