Skip to content

Commit

Permalink
test: install python venv for presubmit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jrangelramos committed Oct 11, 2024
1 parent e294df1 commit c67b392
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/presubmit-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ function post_build_tests() {
function pre_unit_tests() {
install_node
install_rust
install_python_venv
}

function install_node() {
Expand All @@ -68,6 +69,11 @@ function install_rust() {
cargo version
}

function install_python_venv() {
header "Installing Python virtual env"
apt-get install python3-venv
}

function unit_tests() {
local failed=0
header "Checking embedded templates"
Expand Down

0 comments on commit c67b392

Please sign in to comment.