Selenium Python - CI/CD Integration
Given this Jenkins Pipeline snippet, what will be the output if
test_login.py fails?pipeline {
agent any
stages {
stage('Run Tests') {
steps {
sh 'python3 test_login.py'
}
}
}
}