Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
MAX_PYTEST_FAILURES=12345678 ./bin/run-all-tests.sh

Run just front-end tests

Info
titleDebugging

See Debugging front-end test if you need to look into a test behavior such as unexpected error, hanging and so on.

Code Block
languagebash
# For the front-end tests, Impala must be running:
./bin/start-impala-cluster.py
 
(pushd fe && mvn -fae test)
 
# To run one group of tests:
(pushd fe && mvn -fae test -Dtest=AnalyzeStmtsTest)
 
# To run a single test:
(pushd fe && mvn -fae test -Dtest=AnalyzeStmtsTest#TestStar)

...