cucumber.yml in activeadmin-1.3.1 vs cucumber.yml in activeadmin-1.4.0
- old
+ new
@@ -1,3 +1,7 @@
-default: --format 'progress' --require features/support/regular_env.rb features --tags ~@requires-reloading --tags ~@wip
-wip: --format 'progress' --require features/support/env.rb features --tags @wip:3 --wip features
-class-reloading: CLASS_RELOADING=true --format 'progress' --require features/support/reload_env.rb features --tags @requires-reloading
+<%
+ std_opts = "--format progress --order random"
+ default_opts = std_opts + " --format ParallelTests::Gherkin::RuntimeLogger --out tmp/parallel_runtime_cucumber.log"
+%>
+
+default: <%= default_opts %> --require features/support/regular_env.rb features --tags 'not @requires-reloading' --tags 'not @wip'
+class-reloading: CLASS_RELOADING=true <%= std_opts %> --require features/support/reload_env.rb features --tags @requires-reloading