Actions
action #153856
closedcoordination #138077: [qe-core] Packages in Python Reduced Stack
[qe-core] Extend the installation steps in the python3_setuptools test using HTTP via pip
Status:
Resolved
Priority:
Normal
Assignee:
Category:
Enhancement to existing tests
Target version:
Start date:
2024-01-18
Due date:
% Done:
0%
Estimated time:
Difficulty:
Description
In the test tests/console/python3_setuptools
, we install the package locally using pip. Now, extend the test by adding the installation of the package using HTTP via pip or pipx. You can use the local HTTP server.
pip install --index-url can be used to install a package from that local server.
Updated by amanzini 10 months ago
from the pip install --help documentation:
-i, --index-url <url> Base URL of the Python Package Index (default https://pypi.org/simple). This should point to a
repository compliant with PEP 503 (the simple repository API) or a local directory laid out in
the same format.
so we need to create a valid PEP 503 repository structure
Actions