Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion scripts/install_dev_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ install_python_packages() {
fi

echo "📦 Installing Python packages with $PIP_CMD..."
$PIP_CMD install --user gcovr pytest pytest-cov

if [ -n "$VIRTUAL_ENV" ]; then
$PIP_CMD install gcovr pytest pytest-cov
else
$PIP_CMD install --user gcovr pytest pytest-cov
fi

echo "✅ Python packages installed"
}
Expand Down