| Index: mojo/tools/mojob.sh
|
| diff --git a/mojo/tools/mojob.sh b/mojo/tools/mojob.sh
|
| index f1c5d6efacb5757b64c7033d98817a0d6152747b..eddefe246891ad54e0f01f3b7e5bd1297c3700ab 100755
|
| --- a/mojo/tools/mojob.sh
|
| +++ b/mojo/tools/mojob.sh
|
| @@ -68,13 +68,6 @@ do_perftests() {
|
| "out/$1/mojo_public_system_perftests" || exit 1
|
| }
|
|
|
| -do_pytests() {
|
| - echo "Running python tests in out/$1 ..."
|
| - python mojo/tools/run_mojo_python_tests.py || exit 1
|
| - python mojo/tools/run_mojo_python_bindings_tests.py "--build-dir=out/$1" || \
|
| - exit 1
|
| -}
|
| -
|
| do_gn() {
|
| local gn_args="$(make_gn_args $1)"
|
| echo "Running gn with --args=\"${gn_args}\" ..."
|
| @@ -164,10 +157,6 @@ for arg in "$@"; do
|
| should_do_Debug && do_perftests Debug
|
| should_do_Release && do_perftests Release
|
| ;;
|
| - pytest)
|
| - should_do_Debug && do_pytests Debug
|
| - should_do_Release && do_pytests Release
|
| - ;;
|
| gn)
|
| should_do_Debug && do_gn Debug
|
| should_do_Release && do_gn Release
|
|
|