Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2018-11-18 00:13:17 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2018-11-18 21:32:16 +0300
commit7a958bce69653e03f8a7218da4ded088d6dac9ae (patch)
tree1ab888474e37525c8fb94ad697f3cd98731e27a4 /config
parenta09f7d73d8353678e9c6ba0d7798af734acb011b (diff)
Bump cucumber
Diffstat (limited to 'config')
-rw-r--r--config/cucumber.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/cucumber.yml b/config/cucumber.yml
index 977c9d5ae..35ca76a82 100644
--- a/config/cucumber.yml
+++ b/config/cucumber.yml
@@ -4,14 +4,14 @@ format = ENV['CUCUMBER_FORMAT'] || 'pretty'
# option lists for the `cucumber` command
rerun_opts = rerun.to_s.strip.empty? ? "--format #{format} features" : "--format #{format} #{rerun}"
-std_opts = "--format #{format} --strict --tags ~@wip --tags ~@screenshots"
+std_opts = "--format #{format} --strict --tags 'not @wip and not @screenshots'"
screenshot_opts = "--require features --format pretty"
%>
# 'normal' test runs
-default: <%= std_opts %> -r features --tags ~@nophantomjs
+default: <%= std_opts %> -r features --tags 'not @nophantomjs'
wip: -r features --tags @wip:3 --wip features
-rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip --tags ~@screenshots
+rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags 'not @wip and not @screenshots'
# screenshot feature
ref_screens: "<%= screenshot_opts %> --tags @reference-screenshots"