config.nims 423 B

1234567891011
  1. switch("path", "$nim/testament/lib") # so we can `import stdtest/foo` in this dir
  2. ## prevent common user config settings to interfere with testament expectations
  3. ## Indifidual tests can override this if needed to test for these options.
  4. switch("colors", "off")
  5. switch("filenames", "canonical")
  6. switch("excessiveStackTrace", "off")
  7. # we only want to check the marked parts in the tests:
  8. switch("staticBoundChecks", "off")