How can I build the entire project without running...
# help-connector-development
j
How can I build the entire project without running any tests or checks?
k
A message from kapa.ai
To build the entire Airbyte project without running any tests, you can use the
-x test
flag with the
./gradlew build
command. For example, to build the Airbyte Platform without running tests, you can use the following command:
Copy code
SUB_BUILD=PLATFORM ./gradlew build -x test
This command will build the platform and skip the tests during the build process. Source: [Gradle Cheatsheet](https://docs.airbyte.com/contributing-to-airbyte/gradle-cheatsheet)
j
I tried that. It still runs tests.
Shouldn't the
assemble
task skip tests?