Skip to content

Commit b54bb8e

Browse files
committed
Commit for release 2.1.0.
Test compatibility for Python3.5, explicit settings and string conversion
1 parent b98aebd commit b54bb8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/issues/test_issue51.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_issue51(tmpdir):
1616
response = requests.get(
1717
"https://raw.githubusercontent.com/adamrossnelson/HelloWorld/master/sparefiles/buggy1.pkl"
1818
)
19-
pkl_file = Path(tmpdir) / "buggy1.pkl"
19+
pkl_file = Path(str(tmpdir)) / "buggy1.pkl"
2020
pkl_file.write_bytes(response.content)
2121

2222
df = pd.read_pickle(str(pkl_file))

tests/issues/test_issue94.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
def test_issue94(tmpdir):
16-
file_path = Path(tmpdir) / "issue94.csv"
16+
file_path = Path(str(tmpdir)) / "issue94.csv"
1717
file_path.write_text(
1818
"""CourseName
1919
PHY

0 commit comments

Comments
 (0)