From 56cf0bc13e65e3b593585dba24f3dbae1aa8d1da Mon Sep 17 00:00:00 2001 From: Peter Parente Date: Sun, 5 May 2019 15:04:54 -0400 Subject: [PATCH] Minor doc update to test tx-en --- docs/contributing/tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/tests.md b/docs/contributing/tests.md index 61d92359..c2ff4f35 100644 --- a/docs/contributing/tests.md +++ b/docs/contributing/tests.md @@ -4,7 +4,7 @@ We greatly appreciate pull requests that extend the automated tests that vet the ## How the Tests Work -Travis executes `make build-test-all` against every pull request submitted to the `jupyter/docker-stacks` repository. The `make` command builds every docker image. After building each image, the `make` command executes `pytest` to run both image-specific tests like those in [base-notebook/test/](https://github.com/jupyter/docker-stacks/tree/master/base-notebook/test) and common tests defined in [test/](https://github.com/jupyter/docker-stacks/tree/master/test). Both kinds of tests make use of global [pytest fixtures](https://docs.pytest.org/en/latest/fixture.html) defined in the [conftest.py](https://github.com/jupyter/docker-stacks/blob/master/conftest.py) file at the root of the projects. +Travis executes `make build-test-all` against pull requests submitted to the `jupyter/docker-stacks` repository. This `make` command builds every docker image. After building each image, the `make` command executes `pytest` to run both image-specific tests like those in [base-notebook/test/](https://github.com/jupyter/docker-stacks/tree/master/base-notebook/test) and common tests defined in [test/](https://github.com/jupyter/docker-stacks/tree/master/test). Both kinds of tests make use of global [pytest fixtures](https://docs.pytest.org/en/latest/fixture.html) defined in the [conftest.py](https://github.com/jupyter/docker-stacks/blob/master/conftest.py) file at the root of the projects. ## Contributing New Tests