We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b98aebd commit b54bb8eCopy full SHA for b54bb8e
tests/issues/test_issue51.py
@@ -16,7 +16,7 @@ def test_issue51(tmpdir):
16
response = requests.get(
17
"https://raw.githubusercontent.com/adamrossnelson/HelloWorld/master/sparefiles/buggy1.pkl"
18
)
19
- pkl_file = Path(tmpdir) / "buggy1.pkl"
+ pkl_file = Path(str(tmpdir)) / "buggy1.pkl"
20
pkl_file.write_bytes(response.content)
21
22
df = pd.read_pickle(str(pkl_file))
tests/issues/test_issue94.py
@@ -13,7 +13,7 @@
13
14
15
def test_issue94(tmpdir):
- file_path = Path(tmpdir) / "issue94.csv"
+ file_path = Path(str(tmpdir)) / "issue94.csv"
file_path.write_text(
"""CourseName
PHY
0 commit comments