Can AppHarbor set a conditional compilation symbol during build? Maybe simply: AppHarbor
I have some tests that can't run on the server (they rely on test data files).
If AppHarbor could set a conditional compilation symbol, then I could add an [Ignore] attribute on the test when that symbol is present.
Or, is there a better or different way to ignore specific tests when running at AppHarbor?
Or, is there a way for the test code to correctly reference a test data file residing in the project?
Thanks! Glen
Edit: I got my test to work by embedding the data file as a Resource in the test project. Not ideal, but okay for now. However, would still like to know if compilation symbols can be set as described.