Skip navigation links

Package org.apache.drill.categories

This package stores the JUnit test categories.

See: Description

Package org.apache.drill.categories Description

This package stores the JUnit test categories. The theory behind categories is that there are three broad categories of tests:

In additon to each broad category there are functional categories including but not limited to:

Functional categories represent tests for specific piece of drill.

Now here are some examples of how to run different sets of tests.

In order to run only the FastTests you can do:
mvn -T 1C clean install

In order to run only the FastTests and UnlikelyTests you can do: mvn -T 1C clean install -DexcludedGroups="org.apache.drill.categories.SlowTest"

In order to run all the tests you can do: mvn -T 1C clean install -DexcludedGroups=""

In order to run all the fast security tests: mvn -T 1C clean install -Dgroups="org.apache.drill.categories.SecurityTest"

In order to run all the security tests: mvn -T 1C clean install -Dgroups="org.apache.drill.categories.SecurityTest" -DexcludedGroups=""

Skip navigation links

Copyright © 2021 The Apache Software Foundation. All rights reserved.