8000 setup.py test as test entry point. by anntzer · Pull Request #8135 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

setup.py test as test entry point. #8135

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Do not install any dependency from setup.py test.
If we did not overrider install_dists, setup.py test would install
dependencies using easy_install, which we definitely do not want.
  • Loading branch information
anntzer committed Sep 21, 2017
commit 86dc98d7672ce64a4d6368c7dffe415d82f150dc
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ def initialize_options(self):
self.pytest_args = ""
self.local_freetype = ""

install_dists = staticmethod(lambda dist: [])

def run_tests(self):
import shlex
import pytest
Expand Down
0