Skip to content

Commit

Permalink
skip deploying contracts for ScoutCloud
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtzData committed May 26, 2024
1 parent 382a47f commit d79db2e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 31 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/e2e_scoutcloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,11 @@ env:
SCOUTCLOUD_CHAIN_TYPE: ${{ inputs.chain_type }}
SCOUTCLOUD_NODE_TYPE: ${{ inputs.node_type }}

BLOCKSCOUT_URL: ${{ secrets.E2E_BLOCKSCOUT_URL }}
FRONTEND_URL: ${{ secrets.E2E_FRONTEND_URL }}
NETWORK_URL: ${{ secrets.E2E_NETWORK_URL }}
ACCOUNT_USERNAME: ${{ secrets.ACCOUNT_USERNAME }}
ACCOUNT_PASSWORD: ${{ secrets.ACCOUNT_PASSWORD }}
MAILSLURP_API_KEY: ${{ secrets.MAILSLURP_API_KEY }}
MAILSLURP_EMAIL_ID: ${{ secrets.MAILSLURP_EMAIL_ID }}
ENV: test
RESOURCE_MODE: account
PUBLIC: false
PORT: 4000
PORT_PG: 5432
PORT_NETWORK_HTTP: 8545
PORT_NETWORK_WS: 8546
WALLET: ${{ secrets.WALLET }}
PWDEBUG: 0
LOAD_AUTH_CTX: 0
LOAD_CONTRACTS_DATA: 0
ACCOUNT: 1
PROD: 1

jobs:
e2e_tests:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Blockscout E2E testing

[![E2E Prod tests](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_prod.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_prod.yaml)
[![E2E Testnet tests (Rollup)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_rollup.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_rollup.yaml)
[![E2E K8s](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_account.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_account.yaml)
[![Production](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_prod.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_prod.yaml)
[![Testnets (Rollup)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_rollup.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_rollup.yaml)
[![K8s](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_account.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_account.yaml)
[![Admin console tests](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_admin.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_admin.yaml)
[![Load smoke](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/load_smoke.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/load_baseline.yaml)
[![ScoutCloud](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_scoutcloud.yaml/badge.svg)](https://github.com/blockscout/blockscout-ci-cd/actions/workflows/e2e_scoutcloud.yaml)

This repo contains E2E and stress/load tests for blockscout APIs
This repo contains E2E and stress/load tests for Blockscout APIs
2 changes: 1 addition & 1 deletion tests/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const config: PlaywrightTestConfig = {
{
name: `ScoutCloud`,
use: {
baseURL: `https://scoutcloud.services.blockscout.com`,
baseURL: process.env.SCOUTCLOUD_URL,
extraHTTPHeaders: {
Accept: `application/vnd.github.v3+json`,
'x-api-key': `663867b8-689c-428c-8676-eee9d2fd6089`,
Expand Down
10 changes: 0 additions & 10 deletions tests/e2e/tests/scoutcloud/ScoutCloud.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@ const l = winston.createLogger({

test.describe.configure({ mode: `parallel` })

export default defineConfig({
use: {
baseURL: `https://scoutcloud.services.blockscout.com`,
extraHTTPHeaders: {
Accept: `application/vnd.github.v3+json`,
'x-api-key': process.env.SCOUTCLOUD_TOKEN,
},
},
})

const createInstance = async (r, cfg) => {
const response = await r.post(`/api/v1/instances`, {
data: cfg,
Expand Down

0 comments on commit d79db2e

Please sign in to comment.