apply Black 2024 style in fbcode (4/16) #38
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
name: KFP Integration Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
kfp-launch: | |
runs-on: linux.20_04.16x | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
architecture: x64 | |
- name: Checkout TorchX | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
set -eux | |
pip install -r dev-requirements.txt | |
python setup.py install | |
- name: Start Kubernetes | |
run: | | |
scripts/setup_minikube.sh | |
scripts/setup_kfp.sh | |
- name: Run KFP Integration Tests | |
env: | |
KFP_NAMESPACE: kubeflow | |
INTEGRATION_TEST_STORAGE: torchx_minio://torchx/tests | |
run: scripts/kfpint.py --container_repo localhost:5000/torchx |