Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11ac939

Browse files
committed
TST: add debugging prints
1 parent 1753f6b commit 11ac939

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
3939
displayName: "Install self"
4040
41+
- script: env
42+
displayName: 'print env'
43+
4144
- script: |
4245
4346
pip install pytest

lib/matplotlib/tests/test_backend_bases.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def test_get_default_filename(tmpdir):
5959
def test_non_gui_warning():
6060
plt.close('all')
6161
plt.subplots()
62+
print(matplotlib.get_backend())
6263
with pytest.warns(UserWarning) as rec:
6364
plt.show()
6465
assert len(rec) == 1

0 commit comments

Comments
 (0)