Skip to content

Commit

Permalink
add webgoat to run_integration_tests.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
arielkru committed Oct 26, 2023
1 parent fd05ae4 commit 9258b72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sast_integration_tests/run_integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ set_env_vars() {

prepare_data () {
python checkov/main.py -s --framework sast_python -d repositories/flask -o json > checkov_report_sast_python.json
# python checkov/main.py -s --framework sast_java -d repositories/jenkins -o json > checkov_report_sast_java.json
python checkov/main.py -s --framework sast_java -d repositories/WebGoat -o json > checkov_report_sast_java.json
python checkov/main.py -s --framework sast_javascript -d repositories/axios -o json > checkov_report_sast_javascript.json

}

clone_repositories () {
echo Clone flask - Python repo for SAST;
git clone https://github.com/pallets/flask
# echo Clone jenkins - Java repo for SAST
# git clone https://github.com/jenkinsci/jenkins
echo Clone WebGoat - Java repo for SAST
git clone https://github.com/WebGoat/WebGoat
echo Clone axios - JavaScript repo for SAST
git clone https://github.com/axios/axios
}
Expand Down

0 comments on commit 9258b72

Please sign in to comment.