From 4d36e76cbc21cc8b3040f1a1f21f49542eb51b89 Mon Sep 17 00:00:00 2001 From: Chirag Raman Date: Tue, 25 Feb 2020 15:45:34 +0100 Subject: [PATCH] Update tests README to point to tests/requirements.txt (#935) * Update tests README Point to tests/requirements.txt as part of instructions * Update `requirements` to `dependencies` --- tests/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/README.md b/tests/README.md index 183e9c25..8835ab93 100644 --- a/tests/README.md +++ b/tests/README.md @@ -17,7 +17,7 @@ cd pytorch-lightning pip install -e . # install dev deps -pip install -r requirements.txt +pip install -r tests/requirements.txt # run tests py.test -v @@ -35,7 +35,7 @@ Make sure to run coverage on a GPU machine with at least 2 GPUs and NVIDIA apex ```bash cd pytorch-lightning -# generate coverage +# generate coverage (coverage is also installed as part of dev dependencies under tests/requirements.txt) pip install coverage coverage run --source pytorch_lightning -m py.test pytorch_lightning tests examples -v --doctest-modules