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 3744f61 commit f639bf2Copy full SHA for f639bf2
tests/test_util.py
@@ -271,8 +271,8 @@ def test_mkdocs_in_git_subdir(tmp_path):
271
"""
272
testproject_path = tmp_path / 'testproject'
273
274
- shutil.copytree('tests/basic_setup/docs', testproject_path / 'website' / 'docs')
275
- shutil.copyfile("tests/basic_setup/mkdocs.yml", testproject_path / 'website' / 'mkdocs.yml')
+ shutil.copytree('tests/basic_setup/docs', str(testproject_path / 'website' / 'docs'))
+ shutil.copyfile("tests/basic_setup/mkdocs.yml", str(testproject_path / 'website' / 'mkdocs.yml'))
276
277
cwd = os.getcwd()
278
os.chdir(str(testproject_path))
0 commit comments