screwdriver-api 7.0.200 → 7.0.202

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -257,15 +257,15 @@ webhooks:
257
257
  maxBytes: 1048576 # 1MB
258
258
 
259
259
  coverage:
260
- default: true
261
- # plugin: sonar
262
- # sonar:
263
- # sdApiUrl: https://api.screwdriver.cd
264
- # sonarHost: https://sonar.screwdriver.cd
265
- # adminToken: your-sonar-admin-token
266
- # sdUiUrl: https://cd.screwdriver.cd
267
- # sonarEnterprise: false
268
- # sonarGitAppName: "Screwdriver Sonar PR Checks"
260
+ default: "false"
261
+ plugin: sonar
262
+ sonar:
263
+ sdApiUrl: https://api.screwdriver.cd
264
+ sonarHost: https://sonar.screwdriver.cd
265
+ adminToken: your-sonar-admin-token
266
+ sdUiUrl: https://cd.screwdriver.cd
267
+ sonarEnterprise: false
268
+ sonarGitAppName: "Screwdriver Sonar PR Checks"
269
269
 
270
270
  multiBuildCluster:
271
271
  # Enabled multi build cluster feature or not
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-api",
3
- "version": "7.0.200",
3
+ "version": "7.0.202",
4
4
  "description": "API server for the Screwdriver.cd service",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -10,8 +10,9 @@
10
10
  "start": "./bin/server",
11
11
  "debug": "node --nolazy ./bin/server",
12
12
  "profile": "node --prof ./bin/server",
13
- "functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and (not @parallel)' --retry 2 --fail-fast --exit",
14
- "functional-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and @parallel' --retry 2 --fail-fast --exit --parallel 7",
13
+ "functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and (not @x1) and (not @parallel)' --retry 2 --fail-fast --exit",
14
+ "functional-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and (not @x1) and @parallel' --retry 2 --fail-fast --exit --parallel 7",
15
+ "functional-x1-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and @x1 and @parallel' --retry 2 --fail-fast --exit --parallel 7",
15
16
  "functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1) and (not @parallel)' --retry 2 --fail-fast --exit",
16
17
  "functional-beta-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1) and @parallel' --retry 2 --fail-fast --exit --parallel 7",
17
18
  "functional-beta-x1-parallel": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @x1 and @parallel' --retry 2 --fail-fast --exit --parallel 7",