Turns out that I'm doing something wrong. Running with the following
command line works:
buildr test:net.sf.swtbot.generator
I'm just amazed at the subtleness of a lot of things in buildr!
-- Ketan
Ketan Padegaonkar wrote:
Hi,
I'd like to build and test only certain projects.
Here's what I've defined in one of my projects "net.sf.swtbot.generator":
compile.with([COMMON_JARS, DEPS,
project("net.sf.swtbot.finder")].flatten).using(:warnings=>false,
:debug=>true)
this however builds the "net.sf.swtbot.finder" project and runs tests on
it.
I'd however want to skip tests for the entire "net.sf.swtbot.finder"
project.
I'm using the following command line argument to run the build:
buildr swtbot-2:net.sf.swtbot.generator test
Is this supported by buildr, or is there something I'm doing wrong ?
-- Ketan