Skip to content

Commit

Permalink
feature: Metaflow end-to-end testing GHA (#2336)
Browse files Browse the repository at this point in the history
uses the newly introduced `metaflow-dev` to spin up a complete stack for
end-to-end testing inside GHA
  • Loading branch information
saikonen authored Mar 5, 2025
1 parent 95f9767 commit b32894e
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/full-stack-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Test Metaflow with complete Kubernetes stack

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Check out source
uses: actions/checkout@v4

- name: Install Metaflow
run: |
python -m pip install --upgrade pip
pip install . kubernetes
- name: Bring up the environment
run: |
echo "Starting environment in the background..."
MINIKUBE_CPUS=2 metaflow-dev all-up &
# Give time to spin up. Adjust as needed:
sleep 150
- name: Wait & run flow
run: |
# When the environment is up, metaflow-dev shell will wait for readiness
# and then drop into a shell. We feed commands via a heredoc:
cat <<EOF | metaflow-dev shell
echo "Environment is ready; running flow now..."
python metaflow/tutorials/00-helloworld/helloworld.py run --with kubernetes
EOF
- name: Tear down environment
run: |
metaflow-dev down

0 comments on commit b32894e

Please sign in to comment.