Skip to content

Commit

Permalink
Replace os.sep with / in dist_dir
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Oct 12, 2021
1 parent a504327 commit 9d46a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jupyter_releaser/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,10 +608,10 @@ def test_extract_dist_multipy(
changelog_entry = mock_changelog_entry(git_repo, runner, mocker)

# Create the dist files
dist_dir = Path(util.CHECKOUT_NAME).resolve() / "dist"
dist_dir = normalize_path(Path(util.CHECKOUT_NAME).resolve() / "dist")
for package in py_multipackage:
run(
'python -m build . -o "{dist_dir}"',
"python -m build . -o {dist_dir}",
cwd=Path(util.CHECKOUT_NAME).resolve() / package["rel_path"],
)

Expand Down

0 comments on commit 9d46a02

Please sign in to comment.