Skip to content

Commit 5587212

Browse files
committed
test windows
1 parent 951a5c9 commit 5587212

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/epicure/epicuring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ def load_epicure_data(self, epiname):
805805
infile = open(epiname, "rb")
806806
try:
807807
if ut.is_windows():
808-
epidata = pickle.load( infile, encoding="latin1" )
808+
epidata = pickle.load( infile, encoding="utf8" )
809809
else:
810810
epidata = pickle.load( infile )
811811
#print(epidata)

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ passenv =
2929
extras =
3030
testing
3131

32+
3233
commands = pytest -v --color=yes

0 commit comments

Comments
 (0)