jupyterlab / jupyterlab_server

A set of server components for JupyterLab and JupyterLab like applications

Home Page:http://jupyterlab-server.readthedocs.io/en/stable/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

test_data in the main package

frenzymadness opened this issue · comments

I'd like to ask what is the point of having the test_data folder as a part of the main package. If I, as a user, install jupyterlab-server, I get this folder but it does not seem to be used anywhere outside tests that are not part of the main package.

Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗

If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
welcome
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋

Welcome to the Jupyter community! 🎉

I would say this is an old practice of packaging Python code with the ability for users to check the installation went well. Otherwise we need to provide two packages increasing the packaging maintenance burden.

But I agree that for the wheel we should exclude the folder.

Closing because we need those data files for the exported pytest plugin (I forget about it...)

src = pjoin(HERE, "test_data", "schemas", "@jupyterlab")

Thank you very much for the quick response.