diff options
| author | Teddy Wing | 2017-12-13 18:26:20 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2017-12-13 18:26:20 +0100 | 
| commit | 8ad2cf4ab09ed97cae8eee3840e89abe30018001 (patch) | |
| tree | 7f5267ca6b17354f98afac088d97481acb3993a9 | |
| parent | d2c0d80c7aaeb61d373f084f13bb007e1f41527e (diff) | |
| download | chouette-core-8ad2cf4ab09ed97cae8eee3840e89abe30018001.tar.bz2 | |
spec_helper: Exclude 'truncation' tests from normal runner
Now that I've skipped the referential lock tests that were set as
'truncation', we can revert back to old behaviour and not run the
'truncation' tests as part of the normal suite runner. This gets the
tests passing again.
Refs #5024
| -rw-r--r-- | spec/spec_helper.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 78438701a..2d13d3802 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -65,6 +65,7 @@ RSpec.configure do |config|    # :meta tests can be run seperately in case of doubt about the tests themselves    # they serve mainly as an explanataion of complicated tests (as e.g. PG information_schema introspection)    config.filter_run_excluding meta: true +  config.filter_run_excluding truncation: true    config.filter_run_excluding wip: true    config.run_all_when_everything_filtered = true    config.include TokenInputHelper, type: :feature | 
