Skip to content

Commit fe0ad3c

Browse files
author
arthosofteq
authored
Merge pull request #1111 from RedisInsight/bugfix/RI-3494-fix-cached-docker-layer
remove DLC for docker build job since it doesn't save time to build
2 parents ac6f4ad + d224b80 commit fe0ad3c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ jobs:
404404
docker-compose \
405405
-f tests/e2e/rte.docker-compose.yml \
406406
-f tests/e2e/docker.web.docker-compose.yml \
407-
up --abort-on-container-exit --force-recreate
407+
up --abort-on-container-exit --force-recreate --build
408408
no_output_timeout: 5m
409409
- when:
410410
condition:
@@ -675,7 +675,7 @@ jobs:
675675
- <<: *scan
676676
- <<: *validate
677677
docker:
678-
executor: linux-executor-dlc
678+
executor: linux-executor
679679
parameters:
680680
env:
681681
type: enum

tests/e2e/web.runner.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import testcafe from 'testcafe';
1313
.screenshots({
1414
path: 'report/screenshots/',
1515
takeOnFails: true,
16-
pathPattern: '${USERAGENT}/${DATE}_${TIME}/${FIXTURE}_${TEST_INDEX}.png',
16+
pathPattern: '${OS}_${BROWSER}/${DATE}_${TIME}/${FIXTURE}_${TEST_INDEX}.png',
1717
})
1818
.reporter([
1919
'spec',
@@ -24,6 +24,10 @@ import testcafe from 'testcafe';
2424
{
2525
name: 'json',
2626
output: './results/e2e.results.json'
27+
},
28+
{
29+
name: 'html',
30+
output: './report/report.html'
2731
}
2832
])
2933
.run({

0 commit comments

Comments
 (0)