tests: Remove usage of --flake8 flag (#5909)
* tests: Remove usage of --flake8 flag * Remove commented line Co-authored-by: Carlos Mocholi <carlossmocholi@gmail.com>
This commit is contained in:
parent
979c879e45
commit
ae19c9723b
|
@ -202,7 +202,7 @@ This is useful if you do not test against all required dependency versions.
|
|||
**Docker:** Another option is utilize the [pytorch lightning cuda base docker image](https://hub.docker.com/repository/docker/pytorchlightning/pytorch_lightning/tags?page=1&name=cuda). You can then run:
|
||||
|
||||
```bash
|
||||
python -m pytest pytorch_lightning tests pl_examples -v --flake8
|
||||
python -m pytest pytorch_lightning tests pl_examples -v
|
||||
```
|
||||
|
||||
### Pull Request
|
||||
|
|
2
Makefile
2
Makefile
|
@ -23,7 +23,7 @@ test: clean
|
|||
# install APEX, see https://github.com/NVIDIA/apex#linux
|
||||
|
||||
# use this to run tests
|
||||
python -m coverage run --source pytorch_lightning -m pytest pytorch_lightning tests pl_examples -v --flake8
|
||||
python -m coverage run --source pytorch_lightning -m pytest pytorch_lightning tests pl_examples -v
|
||||
python -m coverage report
|
||||
|
||||
docs: clean
|
||||
|
|
|
@ -2,7 +2,6 @@ coverage>=5.0
|
|||
codecov>=2.1
|
||||
pytest>=5.0
|
||||
# pytest-cov
|
||||
# pytest-flake8
|
||||
flake8>=3.6
|
||||
check-manifest
|
||||
twine==3.2
|
||||
|
|
Loading…
Reference in New Issue