Skip to content

Caching the results of Transform.transform_path for non-affine transforms #723

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 9 commits into from
Jun 8, 2012
Merged
Show file tree
Hide file tree
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
Next Next commit
Moved scatter test into test_axes.py
  • Loading branch information
Phil Elson authored and pelson committed Jun 7, 2012
commit 4c88a6d43f36c455c36751a40f9b78816b24c013
8 changes: 8 additions & 0 deletions lib/matplotlib/tests/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ def test_marker_edges():
ax.set_xticks([])
ax.set_yticks([])

<<<<<<< HEAD
@image_comparison(baseline_images=['hist_log'])
def test_hist_log():
data0 = np.linspace(0,1,200)**3
Expand Down Expand Up @@ -697,6 +698,13 @@ def test_hist2d_transpose():
ax = fig.add_subplot(111)
ax.hist2d(x,y,bins=10)


@image_comparison(baseline_images=['scatter'])
def test_scatter_plot():
ax = plt.axes()
ax.scatter([3, 4, 2, 6], [2, 5, 2, 3], c=['r', 'y', 'b', 'lime'], s=[24, 15, 19, 29])


if __name__=='__main__':
import nose
nose.runmodule(argv=['-s','--with-doctest'], exit=False)
15 changes: 0 additions & 15 deletions lib/matplotlib/tests/test_plot_types.py

This file was deleted.