Skip to content

Commit

Permalink
Merge pull request matplotlib#10837 from anntzer/setuppytesterror
Browse files Browse the repository at this point in the history
Correctly display error when running setup.py test.
  • Loading branch information
dopplershift authored Mar 19, 2018
2 parents 8991f9f + d0f09cd commit 3b915df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@


class NoopTestCommand(TestCommand):
def run(self):
def __init__(self, dist):
print("Matplotlib does not support running tests with "
"'python setup.py test'. Please run 'python tests.py'")
"'python setup.py test'. Please run 'python tests.py'.")


class BuildExtraLibraries(BuildExtCommand):
Expand Down

0 comments on commit 3b915df

Please sign in to comment.