-
Notifications
You must be signed in to change notification settings - Fork 18
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
There are some minor things that occurred to me when taking my first steps with nox-poetry:
-
the distribution_format argument to installroot needs to be of type DistributionFormat; it would be handy if it would accept strings ('sdist', 'wheel') as well.
-
installroot requires distribution_format to be passed as a keyword argument. I didn't know this was possible and this is the first time I encountered this so it confused me.
-
Perhaps a (slightly) nicer way to integrate with nox is to offer a replacement for
nox.session
. Then one could do:from nox_poetry import session, SDIST @session() def unit(session): session.installroot(SDIST) session.install('pytest') session.run('pytest', 'tests')
cjolowicz
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request