Skip to content

Commit

Permalink
fix: enable pipeline template functional tests (#3189)
Browse files Browse the repository at this point in the history
  • Loading branch information
VonnyJap authored Sep 6, 2024
1 parent 2da9a1c commit bf3e501
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions features/pipeline-templates.feature
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@parallel
@pipelinetemplate
@x1

Feature: Pipeline Templates

Pipeline template is simply an existing configuration for a pipeline that can be reused.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"start": "./bin/server",
"debug": "node --nolazy ./bin/server",
"profile": "node --prof ./bin/server",
"functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and (not @pipelinetemplate)' --retry 2 --fail-fast --exit",
"functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1) and (not @pipelinetemplate)' --retry 2 --fail-fast --exit",
"functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta)' --retry 2 --fail-fast --exit",
"functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1)' --retry 2 --fail-fast --exit",
"functional-beta-x1": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @x1' --retry 2 --fail-fast --exit",
"functional-dev": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
"create-test-user": "node -e 'require(\"./features/scripts/create-test-user.js\")()'",
Expand Down

0 comments on commit bf3e501

Please sign in to comment.