Commit b56f245
authored
Enable "direct" deployment method tests on CI (#3139)
The "direct deployment" PR has a last minute change of env var value
from "direct" to "direct-exp"
(b47b1f6)
but CI settings were not updated, thus disabling direct tests on CI.
This enables them back
## Tests
Manually:
```
~/work/cli/acceptance/bundle/resources/jobs % ENVFILTER=DATABRICKS_CLI_DEPLOYMENT=terraform testme -v -count=1 | egrep 'PASS|SKIP|FAIL'
+ go test ../../.. -run ^TestAccept$/^bundle$/^resources$/^jobs$ -v -count=1
--- SKIP: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=direct-exp (0.01s)
--- PASS: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=terraform (4.74s)
~/work/cli/acceptance/bundle/resources/jobs % ENVFILTER=DATABRICKS_CLI_DEPLOYMENT=direct testme -v -count=1 | egrep 'PASS|SKIP|FAIL'
+ go test ../../.. -run ^TestAccept$/^bundle$/^resources$/^jobs$ -v -count=1
--- PASS: TestAccept (1.07s)
--- PASS: TestAccept/bundle/resources/jobs (0.00s)
--- SKIP: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=terraform (0.01s)
--- PASS: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=direct-exp (2.34s)
~/work/cli/acceptance/bundle/resources/jobs % ENVFILTER=DATABRICKS_CLI_DEPLOYMENT=direct-exp testme -v -count=1 | egrep 'PASS|SKIP|FAIL'
+ go test ../../.. -run ^TestAccept$/^bundle$/^resources$/^jobs$ -v -count=1
--- PASS: TestAccept (1.04s)
--- PASS: TestAccept/bundle/resources/jobs (0.00s)
--- SKIP: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=terraform (0.01s)
--- PASS: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=direct-exp (2.37s)
~/work/cli/acceptance/bundle/resources/jobs % ENVFILTER=DATABRICKS_CLI_DEPLOYMENT=bla testme -v -count=1 | egrep 'PASS|SKIP|FAIL'
+ go test ../../.. -run ^TestAccept$/^bundle$/^resources$/^jobs$ -v -count=1
--- PASS: TestAccept (1.02s)
--- PASS: TestAccept/bundle/resources/jobs (0.00s)
--- SKIP: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=direct-exp (0.00s)
--- SKIP: TestAccept/bundle/resources/jobs/DATABRICKS_CLI_DEPLOYMENT=terraform (0.00s)
```1 parent 2a3d002 commit b56f245
1 file changed
Lines changed: 10 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
304 | 304 | | |
305 | 305 | | |
306 | 306 | | |
| 307 | + | |
307 | 308 | | |
308 | 309 | | |
309 | 310 | | |
| |||
313 | 314 | | |
314 | 315 | | |
315 | 316 | | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
316 | 325 | | |
317 | 326 | | |
318 | | - | |
| 327 | + | |
319 | 328 | | |
320 | 329 | | |
321 | 330 | | |
| |||
0 commit comments