-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
154 changed files
with
5,454 additions
and
3,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
name: Applitools Cypress | ||
|
||
on: pull_request_target | ||
on: | ||
schedule: | ||
- cron: "0 1 * * *" | ||
|
||
jobs: | ||
cypress-applitools: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
browser: ["chrome"] | ||
node: [16] | ||
env: | ||
FLASK_ENV: development | ||
SUPERSET_CONFIG: tests.integration_tests.superset_test_config | ||
|
@@ -35,79 +37,52 @@ jobs: | |
- 16379:6379 | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
- name: Check if python or frontend changes are present | ||
id: check | ||
env: | ||
GITHUB_REPO: ${{ github.repository }} | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
continue-on-error: true | ||
run: ./scripts/ci_check_no_file_changes.sh python frontend | ||
ref: master | ||
- name: Setup Python | ||
if: steps.check.outcome == 'failure' | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.8" | ||
- name: OS dependencies | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: apt-get-install | ||
- name: Install python dependencies | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: | | ||
pip-upgrade | ||
pip install -r requirements/testing.txt | ||
- name: Setup postgres | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: setup-postgres | ||
- name: Import test data | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: testdata | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16" | ||
node-version: ${{ matrix.node }} | ||
- name: Install npm dependencies | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: npm-install | ||
- name: Build javascript packages | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: build-instrumented-assets | ||
- name: Install cypress | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: cypress-install | ||
- name: Run Applitools Cypress | ||
if: steps.check.outcome == 'failure' | ||
- name: Run Cypress | ||
uses: ./.github/actions/cached-dependencies | ||
env: | ||
CYPRESS_BROWSER: ${{ matrix.browser }} | ||
with: | ||
run: cypress-run-applitools | ||
batch-completion-notification: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
needs: cypress-applitools | ||
steps: | ||
- name: Update Applitools batch status | ||
uses: wei/[email protected] | ||
env: | ||
APPLITOOLS_BATCH_ID: ${{ github.sha }} | ||
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} | ||
with: | ||
args: -d "" -X POST https://eyesapi.applitools.com/api/externals/github/servers/github.com/commit/${{ env.APPLITOOLS_BATCH_ID }}/complete?apiKey=${{ env.APPLITOOLS_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,23 +12,29 @@ env: | |
|
||
jobs: | ||
cron: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
node: [16] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
ref: master | ||
- name: Set up Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install Chrome-related packages | ||
run: sudo apt-get update -y && sudo apt-get -y install gconf-service ca-certificates libxshmfence-dev fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libgconf-2-4 libglib2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libnspr4 libnss3 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release xdg-utils libappindicator1 | ||
- name: Install eyes-storybook dependencies | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: eyes-storybook-dependencies | ||
- name: Install NPM dependencies | ||
working-directory: ./superset-frontend | ||
run: | | ||
npm ci | ||
ls ./node_modules/puppeteer/.local-chromium | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: npm-install | ||
- name: Run Applitools Eyes-Storybook | ||
working-directory: ./superset-frontend | ||
run: npx eyes-storybook -u https://superset-storybook.netlify.app/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Superset CLI tests | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "dependabot/npm_and_yarn/**" | ||
pull_request: | ||
types: [synchronize, opened, reopened, ready_for_review] | ||
|
||
jobs: | ||
test-load-examples: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: [3.9] | ||
env: | ||
PYTHONPATH: ${{ github.workspace }} | ||
SUPERSET_CONFIG: tests.integration_tests.superset_test_config | ||
REDIS_PORT: 16379 | ||
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:[email protected]:15432/superset | ||
services: | ||
postgres: | ||
image: postgres:14-alpine | ||
env: | ||
POSTGRES_USER: superset | ||
POSTGRES_PASSWORD: superset | ||
ports: | ||
# Use custom ports for services to avoid accidentally connecting to | ||
# GitHub action runner's default installations | ||
- 15432:5432 | ||
redis: | ||
image: redis:5-alpine | ||
ports: | ||
- 16379:6379 | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
- name: Check if python changes are present | ||
id: check | ||
env: | ||
GITHUB_REPO: ${{ github.repository }} | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
continue-on-error: true | ||
run: ./scripts/ci_check_no_file_changes.sh python | ||
- name: Setup Python | ||
if: steps.check.outcome == 'failure' | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
cache-dependency-path: 'requirements/testing.txt' | ||
- name: Install dependencies | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: | | ||
apt-get-install | ||
pip-upgrade | ||
pip install wheel | ||
pip install -r requirements/testing.txt | ||
setup-postgres | ||
- name: superset init | ||
if: steps.check.outcome == 'failure' | ||
run: | | ||
pip install -e . | ||
superset db upgrade | ||
superset load_test_users | ||
- name: superset load_examples | ||
if: steps.check.outcome == 'failure' | ||
run: | | ||
# load examples without test data | ||
superset load_examples --load-big-data |
Oops, something went wrong.