gnu: python-flake8-polyfill: Enable tests.
* gnu/packages/python.scm (python-flake8-polyfill, python2-flake8-polyfill)[native-inputs]: Add PYTHON-FLAKE8, PYTHON-MOCK, PYTHON-PYCODESTYLE and PYTHON-PYTEST. New field. [arguments]: Replace 'check' phase with custom command.
This commit is contained in:
parent
d296d30013
commit
2c1cad7ad2
|
@ -6250,6 +6250,20 @@ complexity of Python source code.")
|
||||||
(base32
|
(base32
|
||||||
"02gn2wxvh9vnf7m7dld7ca4l60mg5c370hv3swwppkngwaqmcw67"))))
|
"02gn2wxvh9vnf7m7dld7ca4l60mg5c370hv3swwppkngwaqmcw67"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(setenv "PYTHONPATH"
|
||||||
|
(string-append (getcwd) "/build/lib:"
|
||||||
|
(getenv "PYTHONPATH")))
|
||||||
|
(zero? (system* "py.test" "-v")))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-flake8" ,python-flake8)
|
||||||
|
("python-mock" ,python-mock)
|
||||||
|
("python-pycodestyle" ,python-pycodestyle)
|
||||||
|
("python-pytest" ,python-pytest)))
|
||||||
(home-page "https://gitlab.com/pycqa/flake8-polyfill")
|
(home-page "https://gitlab.com/pycqa/flake8-polyfill")
|
||||||
(synopsis "Polyfill package for Flake8 plugins")
|
(synopsis "Polyfill package for Flake8 plugins")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue