Skip to content

Commit 5430190

Browse files
committed
fix pytest
1 parent d1c11bc commit 5430190

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

publib/test/test_functions.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def example1(title, seed):
4444
plt.title(title)
4545
plt.legend(loc='upper left')
4646
plt.ylim((-1.5, 3.5))
47-
plt.show()
47+
# plt.show()
4848
return ax
4949

5050
def example2(title, seed):
@@ -61,7 +61,7 @@ def example2(title, seed):
6161
plt.title(title)
6262
plt.legend(loc='upper left')
6363
plt.ylim((-1.5, 3.5))
64-
plt.show()
64+
# plt.show()
6565
return ax
6666

6767
def example3(title, seed):
@@ -78,8 +78,7 @@ def example3(title, seed):
7878
plt.title(title)
7979
plt.legend(markerscale=1.3)
8080
plt.ylim((-1.5, 3.5))
81-
plt.show()
82-
81+
# plt.show()
8382
return ax
8483

8584
# %% Plot them

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if os.path.exists('README.rst'):
88
long_description = codecs.open('README.rst', encoding="utf-8").read()
99

10-
__version__ = '0.1.12'
10+
__version__ = '0.1.13'
1111

1212
setup(name='publib',
1313
version=__version__,

0 commit comments

Comments
 (0)