Skip to content

Commit

Permalink
Better error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kanterov committed Sep 25, 2024
1 parent 6fd701e commit 55c36bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundle/tests/python_import_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func activateVEnv(t *testing.T) {
venvDir := pathlib.Join(dir, "venv")

err := exec.Command("python3", "-m", "venv", venvDir).Run()
require.NoError(t, err)
require.NoError(t, err, "failed to create venv")

// we don't have shell to activate venv, updating PATH is enough

Expand All @@ -91,5 +91,5 @@ func activateVEnv(t *testing.T) {
"install",
"databricks-pydabs==0.5.1",
).Run()
require.NoError(t, err)
require.NoError(t, err, "failed to install databricks-pydabs")
}

0 comments on commit 55c36bc

Please sign in to comment.