-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
execute permission on python files in test? #119
Comments
Many test files have a
This needs to be consistent with a proper shebang in the first line and the executable bits. That is not always true right now. Also note that when packaging a RPM and installing executable python scripts into On my system, when running
My recommendation from a linux package maintainer point of view is to remove the shebangs and executable bits of the test files. Executing them individually is still possible by calling |
In the
CMakeLists.txt
for the tests I see:Why are these files installed with execute permission? On Linux/OSX this is not needed, is it a Windows thing, or something specific to pytest?
The text was updated successfully, but these errors were encountered: