Feature Request
Implement a poetry test command.
Background
I've been using Makefiles (and sometimes just snippets of code) to manage testing over CIs and I'd like a poetry test command to manage centralize this (for some systems don't have GNU Make).
Demonstration
To configure it, there should be a new section in the pyproject.toml stating what poetry test does, like this:
[tool.poetry.test]
command = "pytest -vvv --cov=package_name"
after_success = 'echo "Yay! All tests have passed!" '
Implementation
Basically, poetry will run that command in a virtual environment (which does not include the package itself) that has installed all the dependancies.
Feature Request
Implement a
poetry testcommand.Background
I've been using Makefiles (and sometimes just snippets of code) to manage testing over CIs and I'd like a
poetry testcommand tomanagecentralize this (for some systems don't have GNU Make).Demonstration
To configure it, there should be a new section in the
pyproject.tomlstating whatpoetry testdoes, like this:Implementation
Basically, poetry will run that command in a virtual environment (which does not include the package itself) that has installed all the dependancies.