lightning/tests/requirements.txt

13 lines
254 B
Plaintext
Raw Normal View History

# install all extra dependencies for full package testing
-r ../requirements-extra.txt
# extended list of dependencies dor development and run lint and tests
2019-08-06 08:46:14 +00:00
tox
2019-08-05 20:01:45 +00:00
coverage
codecov
pytest>=3.0.5
pytest-cov
pytest-flake8
2019-08-05 20:01:45 +00:00
flake8
2019-08-05 20:41:31 +00:00
check-manifest
Add MNIST dataset & drop torchvision dep. from tests (#986) * added custom mnist without torchvision dep * move files so it does not conflict with mnist gitignore * mock torchvision for tests * fix line too long * fix line too long * fix "module level import not at top of file" warning * move mock imports to __init__.py * simplify MNIST a lot and download directly the .pt files * further simplify and clean up mnist * revert import overrides * make as before * drop PIL requirement * move mnist.py to datasets subfolder * use logging instead of print * choose same name as in torchvision * remove torchvision and pillow also from yml file * refactor if train Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * capitalized class attr * moved mnist to models * re-added datsets ignore * better name for file variable * Update mnist.py * move dataset classes to datasets.py * new line * update * update * fix automerge * move to base folder * adapt testingmnist to new mnist base class * remove temporal fix * fix datatype * remove old testingmnist * readable * fix import * fix whitespace * docstring Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * Update tests/base/datasets.py Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * changelog * added types * Update CHANGELOG.md Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * exist->isfile Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * index -> idx * temporary fix for trains error * better changelog message Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
2020-03-30 22:25:37 +00:00
twine==1.13.0