8000 Change docs to recommend tests.py rather than setup.py test by jenshnielsen · Pull Request #5462 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Change docs to recommend tests.py rather than setup.py test #5462

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

Merged
merged 4 commits into from
Nov 12, 2015
Merged
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
Next Next commit
Change way to run tests in readme
  • Loading branch information
jenshnielsen committed Nov 11, 2015
commit 3db8e630f6a69430cb9ca1c3b477e0273a9da355
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ Testing

After installation, you can launch the test suite::

python setup.py test
python tests.py

Or from the python interpreter::

import matplotlib
matplotlib.test()

Consider reading http://matplotlib.org/devel/coding_guide.html#testing for
more information.
more information. Note that the test suite requires nose and on python 2.7 mock
which are not installed by default. Please install with pip or your package
manager of choice.

Contact
=======
Expand Down
0