-
Notifications
You must be signed in to change notification settings - Fork 75
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
REST API missing file #950
Comments
The rest_server is a separate executable program. It is something that python can make a LAN connection to but not call directly. This server is written in C++ and must be compiled for each platform. For unit tests the python code will start up the server, connect to it, exchange some messages, disconnect, and then shut down the server. So, is there a way to include an executable program in the pypi package? |
Okay, thanks for explaining what that is.
Yes, I've done it before but I don't remember how... |
Hi @dkeeney,
I tried making a new release, but I got the following error messages, which prevented the python packages from being built & uploaded to the test server. All of these test failures appear to have the same cause, a missing file for the REST API.
The missing file is:
/project/build/Release/bin/rest_server
IIRC: when you build a python package to distribute it, it only includes python files (
*.py
) be default. Some where in the setup & install scripts there are options to include other files.The text was updated successfully, but these errors were encountered: