Skip to content

Add integration tests #4

Add integration tests

Add integration tests #4

Workflow file for this run

name: End to End tests
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
endtoend:
name: End to End tests
runs-on: ubuntu-latest
env:
FLYTESNACKS_VERSION: ""
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: unionai/[email protected]
name: Setup flytectl
- uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Create Sandbox Cluster
run: |
flytectl config init
flytectl demo start
kubectl create -k "github.com/ray-project/kuberay/ray-operator/config/default?ref=v0.5.2"
kubectl rollout restart deployment flyte-sandbox -n flyte
- name: Setup Flytekit
run: |
python -m pip install --upgrade pip
pip install flytekit flytekitplugins-deck-standard flytekitplugins-ray
pip freeze
- name: execute flyte workflows locally
working-directory: examples
run: |
pyflyte run --remote integration_test.py integration_test
- name: execute flyte workflows on demo cluster
working-directory: examples
run: |
pyflyte run --remote integration_test.py integration_test