Skip to content

Commit ca47c1d

Browse files
committed
check
1 parent d5b52cd commit ca47c1d

File tree

4 files changed

+20
-21
lines changed

4 files changed

+20
-21
lines changed

.circleci/config.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,33 +1144,33 @@ workflows:
11441144
only:
11451145
- /^e2e/feature.*/
11461146
- /^e2e/bugfix.*/
1147-
- setup-sign-certificates:
1148-
name: Setup sign certificates (stage)
1149-
requires:
1150-
- Start E2E Tests
1151-
- setup-build:
1152-
name: Setup build (stage)
1153-
requires:
1154-
- Setup sign certificates (stage)
1155-
- linux:
1156-
name: Build app - Linux (stage)
1157-
requires:
1158-
- Setup build (stage)
1147+
# - setup-sign-certificates:
1148+
# name: Setup sign certificates (stage)
1149+
# requires:
1150+
# - Start E2E Tests
1151+
# - setup-build:
1152+
# name: Setup build (stage)
1153+
# requires:
1154+
# - Setup sign certificates (stage)
1155+
# - linux:
1156+
# name: Build app - Linux (stage)
1157+
# requires:
1158+
# - Setup build (stage)
11591159
- docker:
11601160
name: Build docker image
11611161
requires:
11621162
- Start E2E Tests
11631163
- e2e-tests:
11641164
name: E2ETest
11651165
build: docker
1166-
parallelism: 4
1166+
parallelism: 1
11671167
requires:
11681168
- Build docker image
1169-
- e2e-app-image:
1170-
name: E2ETest (AppImage)
1171-
parallelism: 2
1172-
requires:
1173-
- Build app - Linux (stage)
1169+
# - e2e-app-image:
1170+
# name: E2ETest (AppImage)
1171+
# parallelism: 2
1172+
# requires:
1173+
# - Build app - Linux (stage)
11741174
# Workflow for feature, bugfix, main branches
11751175
feature-main-branch:
11761176
<<: *ignore-for-manual-build

tests/e2e/.env

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ NOTIFICATION_UPDATE_URL=https://s3.amazonaws.com/redisinsight.test/public/tests/
55
NOTIFICATION_SYNC_INTERVAL=30000
66
RI_FEATURES_CONFIG_URL=http://static-server:5551/remote/features-config.json
77
RI_FEATURES_CONFIG_SYNC_INTERVAL=50000
8-
RI_ENCRYPTION_KEY=$E2E_RI_ENCRYPTION_KEY

tests/e2e/tests/web/critical-path/a-first-start-form/user-agreements-form.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test('Verify that user should accept User Agreements to continue working with th
2222
await t.expect(userAgreementDialog.submitButton.hasAttribute('disabled')).ok('Submit button not disabled by default');
2323
await t.expect(myRedisDatabasePage.AddRedisDatabase.addDatabaseManually.exists).notOk('User can\'t add a database');
2424
});
25-
test('Verify that the encryption enabled by default and specific message', async t => {
25+
test.only('Verify that the encryption enabled by default and specific message', async t => {
2626
const expectedPluginText = 'To avoid automatic execution of malicious code, when adding new Workbench plugins, use files from trusted authors only.';
2727
// Verify that section with plugin warning is displayed
2828
await t.expect(userAgreementDialog.pluginSectionWithText.exists).ok('Plugin text is not displayed');

tests/e2e/tests/web/critical-path/database/encryption.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fixture `Encryption`
3131
.afterEach(async() => {
3232
await databaseHelper.deleteDatabase(ossStandaloneTlsConfig.databaseName);
3333
});
34-
test('Verify that data encrypted using KEY', async t => {
34+
test.only('Verify that data encrypted using KEY', async t => {
3535
const decryptionError = 'Unable to decrypt data';
3636
// Connect to DB
3737
await myRedisDatabasePage.clickOnDBByName(ossStandaloneTlsConfig.databaseName);

0 commit comments

Comments
 (0)