Skip to content

Commit 06f3458

Browse files
tweak test output
1 parent 278e4b4 commit 06f3458

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

tests/conftest.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
import os
33
import pandas as pd
44
import os.path
5+
import mplfinance as mpf
56

67
os.environ['MPLBACKEND'] = 'agg'
78

8-
print('\npd.__version__ =',pd.__version__ ) # for the record
9+
print('')
10+
print('pd.__version__ =',pd.__version__ ) # for the record
11+
print('mpf.__version__ =',mpf.__version__ ) # for the record
12+
print('mpf.__file__ =',mpf.__file__) # for the record
13+
print('')
914

1015
infile = os.path.join('examples','data','SPY_20110701_20120630_Bollinger.csv')
1116
df = pd.read_csv(infile,index_col=0,parse_dates=True)

tests/test_alines.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from matplotlib.testing.compare import compare_images
77

88
print('mpf.__version__ =',mpf.__version__) # for the record
9+
print('mpf.__file__ =',mpf.__file__) # for the record
910
print("plt.rcParams['backend'] =",plt.rcParams['backend']) # for the record
1011

1112
base='alines'

0 commit comments

Comments
 (0)