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
Hello,
I think this is an easy error but I can't solve it. When i run invoke test-pybind11 I obtain
invoke test-pybind11
You indicated pty=True, but your platform doesn't support the 'pty' module!
I change this to pty = sys.platform != 'win32' but I obtain No module named 'pybind11_example'
pty = sys.platform != 'win32'
No module named 'pybind11_example'
Thank you for your help,
Florent
The text was updated successfully, but these errors were encountered:
Looking at it, I suspect the issue is that you haven't run the build_pybind11 step first.
build_pybind11
That should be a dependent of the test_pybind11 step. (i.e. added to line 102: @invoke.task(build_pybind11)
test_pybind11
@invoke.task(build_pybind11)
Sorry, something went wrong.
No branches or pull requests
Hello,
I think this is an easy error but I can't solve it.
When i run
invoke test-pybind11
I obtainYou indicated pty=True, but your platform doesn't support the 'pty' module!
I change this to
pty = sys.platform != 'win32'
but I obtainNo module named 'pybind11_example'
Thank you for your help,
Florent
The text was updated successfully, but these errors were encountered: