Open GoogleCodeExporter opened 9 years ago
Regarding tests.exclude, this is used to exclude NUnit tests with a certain
category. Reference:
http://nant.sourceforge.net/release/latest/help/types/categories.html
The categories used by Migrator.NET at the current time are:
MySql
Oracle
Postgre
SQLite
SqlServer
SqlServer2005
SqlServerCe
Original comment by remitay...@gmail.com
on 19 Sep 2010 at 8:01
To run all tests: nant -buildfile:default.build test
To exclude ALL tests that run against an actual database, use this property in
your local.properties:
<property name="tests.exclude"
value="MySql,Oracle,Postgre,SQLite,SqlServer,SqlServer2005,SqlServerCe"/>
For example, if you only want to run SQLite tests, use this property:
<property name="tests.exclude"
value="MySql,Oracle,Postgre,SqlServer,SqlServer2005,SqlServerCe"/>
Original comment by remitay...@gmail.com
on 19 Sep 2010 at 8:04
I can't edit the Wiki pages, so I added that ^ as a comment on the Contributing
page.
You can probably close this issue now, as I added a comment to the page. Looks
like it took me longer than I thought to figure this out, just had to grep thru
the code a bit.
Thanks!
Original comment by remitay...@gmail.com
on 19 Sep 2010 at 8:05
Original issue reported on code.google.com by
remitay...@gmail.com
on 19 Sep 2010 at 7:55