postgres_test_config.rb 698 B

1234567891011121314
  1. module PostgresTestConfig
  2. # Tests are pretty slow w/sahara, and when we destroy the VMs at the beginning
  3. # of the test run. This can be a hindrance for development but is very
  4. # valuable for final testing. This constant allows you to toggle between
  5. # strict testing and less strict testing--the latter being useful for
  6. # development purposes.
  7. HardCoreTesting = true
  8. # If this value is set to true, then each VM will be suspended after the tests
  9. # against it are completed. This will slow things down a ton during
  10. # iterative development, but will save a lot of system resources by not
  11. # keeping all of the VMs running at the same time.
  12. SuspendVMsAfterSuite = true
  13. end