We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python::pyvenv { $_virtualenv: ensure => 'present', version => $pythonconfig::package_ensure, venv_dir => $_virtualenv, } python::pip { $pkgname: ensure => $ensure, pkgname => $pkgname, virtualenv => $_virtualenv, pip_provider => 'pip3', require => Python::Pyvenv[$_virtualenv] } python::pip { "certifi for venv ${_virtualenv}": ensure => 'present', pkgname => 'certifi', virtualenv => $_virtualenv, pip_provider => 'pip3', require => Python::Pip[$pkgname] }
Issue only occurs when running Puppet in noop mode. The following error occurs:
Could not evaluate: Working directory <virtualenv> does not exist!
When running Puppet in normal mode the virtual environment is created and all dependencies are installed.
Looks like the evaluation on the $cwd parameter in the exec in https://github.com/voxpupuli/puppet-python/blob/master/manifests/pip.pp is not working as expected.
No error message and a successful noop run when deploying a new virtual environment.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
What are you seeing
Issue only occurs when running Puppet in noop mode.
The following error occurs:
When running Puppet in normal mode the virtual environment is created and all dependencies are installed.
Looks like the evaluation on the $cwd parameter in the exec in https://github.com/voxpupuli/puppet-python/blob/master/manifests/pip.pp is not working as expected.
What behaviour did you expect instead
No error message and a successful noop run when deploying a new virtual environment.
Output log
Any additional information you'd like to impart
The text was updated successfully, but these errors were encountered: