-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
egg install not install pytest.py file #4177
Copy link
Copy link
Closed
Labels
type: bugproblem that needs to be addressedproblem that needs to be addressedtype: infrastructureimprovement to development/releases/CI structureimprovement to development/releases/CI structuretype: regressionindicates a problem that was introduced in a release which was working previouslyindicates a problem that was introduced in a release which was working previously
Metadata
Metadata
Assignees
Labels
type: bugproblem that needs to be addressedproblem that needs to be addressedtype: infrastructureimprovement to development/releases/CI structureimprovement to development/releases/CI structuretype: regressionindicates a problem that was introduced in a release which was working previouslyindicates a problem that was introduced in a release which was working previously
Type
Fields
Give feedbackNo fields configured for issues without a type.
Hi, new version 3.9.1 not install pytest.py file when egg install from setuptools tests_require parameter is used.
I have this argument in setup.py setup function:
Then when i run python3 setup.py test and no pytest is installed in system yet, then setuptools install all packages, and it's dependencies to .egg directory. So:
Somewhere in my test setup class i import pytest, which not exist now. When pytest is installed via pip3, pytest.py exist in filesystem, for example at /usr/local/lib/python3.5/dist-packages/pytest.py.
Here is my pip3 list
I use that on updated debian stretch docker image with python3 3.5.3-1 package.