Currently, when following the instructions in README.md, make test fails with make: ./bin/flake8: Command not found.
This can be fixed by replacing the command pip install -r requirements.txt with pip install -r requirements-test.txt. This way, the requirements specified in both files are installed, as requirements-test.txt includes the line -r requirements.txt.
Currently, when following the instructions in
README.md
,make test
fails withmake: ./bin/flake8: Command not found
.This can be fixed by replacing the command
pip install -r requirements.txt
withpip install -r requirements-test.txt
. This way, the requirements specified in both files are installed, asrequirements-test.txt
includes the line-r requirements.txt
.