Remove setup.py check from pep8 job

Using "python setup.py check -r -s" method of checking the package has
been deprecated with the new recommendation to build the sdist and
wheel, then running "twine check" against the output.

Luckily, there is already a job that covers this that only runs when the
README, setup.py, or setup.cfg files change, making running this in the
pep8 job redundant. This covered by the test-release-openstack-python3
that is defined in the publish-to-pypi-python3 template.

More details can be found in this mailing list post:

http://lists.openstack.org/pipermail/openstack-dev/2018-October/136136.html

Change-Id: If922868b53aaff788bc9439c0ce1b05340208704
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2018-10-30 10:11:10 -05:00
parent ed0d7e3bf1
commit aa3f21c899
1 changed files with 0 additions and 2 deletions

View File

@ -20,8 +20,6 @@ commands = bindep test
[testenv:pep8]
commands =
# Check the readme for python release
python setup.py check --strict -r
# Run hacking/flake8 check for all python files
bash -c "git ls-files | grep -v releasenotes | xargs grep --binary-files=without-match \
--files-with-match '^.!.*python$' \