Skip to content

Remove datetime test stubs for spectral methods/table #27072

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 1 commit into from
Oct 12, 2023
Merged
Changes from all commits
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
48 changes: 0 additions & 48 deletions lib/matplotlib/tests/test_datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ def test_acorr(self):
fig, ax = plt.subplots()
ax.acorr(...)

@pytest.mark.xfail(reason="Test for angle_spectrum not written yet")
@mpl.style.context("default")
def test_angle_spectrum(self):
fig, ax = plt.subplots()
ax.angle_spectrum(...)

@pytest.mark.xfail(reason="Test for annotate not written yet")
@mpl.style.context("default")
def test_annotate(self):
Expand Down Expand Up @@ -110,12 +104,6 @@ def test_clabel(self):
fig, ax = plt.subplots()
ax.clabel(...)

@pytest.mark.xfail(reason="Test for cohere not written yet")
@mpl.style.context("default")
def test_cohere(self):
fig, ax = plt.subplots()
ax.cohere(...)

@pytest.mark.xfail(reason="Test for contour not written yet")
@mpl.style.context("default")
def test_contour(self):
Expand All @@ -128,12 +116,6 @@ def test_contourf(self):
fig, ax = plt.subplots()
ax.contourf(...)

@pytest.mark.xfail(reason="Test for csd not written yet")
@mpl.style.context("default")
def test_csd(self):
fig, ax = plt.subplots()
ax.csd(...)

@pytest.mark.xfail(reason="Test for errorbar not written yet")
@mpl.style.context("default")
def test_errorbar(self):
Expand Down Expand Up @@ -241,12 +223,6 @@ def test_loglog(self):
fig, ax = plt.subplots()
ax.loglog(...)

@pytest.mark.xfail(reason="Test for magnitude_spectrum not written yet")
@mpl.style.context("default")
def test_magnitude_spectrum(self):
fig, ax = plt.subplots()
ax.magnitude_spectrum(...)

@pytest.mark.xfail(reason="Test for matshow not written yet")
@mpl.style.context("default")
def test_matshow(self):
Expand Down Expand Up @@ -277,12 +253,6 @@ def test_pcolormesh(self):
fig, ax = plt.subplots()
ax.pcolormesh(...)

@pytest.mark.xfail(reason="Test for phase_spectrum not written yet")
@mpl.style.context("default")
def test_phase_spectrum(self):
fig, ax = plt.subplots()
ax.phase_spectrum(...)

@mpl.style.context("default")
def test_plot(self):
mpl.rcParams["date.converter"] = 'concise'
Expand Down Expand Up @@ -312,12 +282,6 @@ def test_plot_date(self):
ax2.plot_date(x_dates, y_ranges)
ax3.plot_date(x_ranges, y_dates)

@pytest.mark.xfail(reason="Test for psd not written yet")
@mpl.style.context("default")
def test_psd(self):
fig, ax = plt.subplots()
ax.psd(...)

@pytest.mark.xfail(reason="Test for quiver not written yet")
@mpl.style.context("default")
def test_quiver(self):
Expand Down Expand Up @@ -348,12 +312,6 @@ def test_semilogy(self):
fig, ax = plt.subplots()
ax.semilogy(...)

@pytest.mark.xfail(reason="Test for specgram not written yet")
@mpl.style.context("default")
def test_specgram(self):
fig, ax = plt.subplots()
ax.specgram(...)

@pytest.mark.xfail(reason="Test for spy not written yet")
@mpl.style.context("default")
def test_spy(self):
Expand Down Expand Up @@ -390,12 +348,6 @@ def test_streamplot(self):
fig, ax = plt.subplots()
ax.streamplot(...)

@pytest.mark.xfail(reason="Test for table not written yet")
@mpl.style.context("default")
def test_table(self):
fig, ax = plt.subplots()
ax.table(...)

@pytest.mark.xfail(reason="Test for text not written yet")
@mpl.style.context("default")
def test_text(self):
Expand Down