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`
This commit is contained in:
Chirag Raman
2020-02-25 09:45:34 -05:00
committed by GitHub
parent 9854084136
commit 4d36e76cbc
+2 -2
View File
@@ -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