Skip to content

Add minimal integration test #22

Add minimal integration test

Add minimal integration test #22

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
working-directory: ${{ matrix.workshop-dir }}
strategy:
fail-fast: false
matrix:
workshop-dir: ["scipy-2023"]
python-version: ["3.9"]
# python-version: ["3.8", "3.9", "3.10", "3.11"]
# os: ["ubuntu-latest", "macos-latest", "windows-latest"]
env:
AWS_ACCESS_KEY_ID: minio
AWS_SECRET_ACCESS_KEY: miniostorage
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements files
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('requirements.txt')) }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt flytekitplugins-envd
pip install pytest pytest-xdist
- name: Pip info
run: python -m pip list
- name: Install FlyteCTL
uses: unionai-oss/flytectl-setup-action@master
- name: Unit Tests
run: pytest tests/unit
- name: Setup Flyte Sandbox
run: |
flytectl demo start
sleep 3
flytectl --config /home/runner/.flyte/config-sandbox.yaml update task-resource-attribute --attrFile cra.yaml
make sandbox-docker-build
pyflyte register --image localhost:30000/flyte-conference-talks:scipy-2023-sandbox workflows
- name: Last Test
run: echo 'done'
# - name: Integration Tests
# run: pytest tests/integration