Skip to content

build(deps): bump webdataset from 0.2.100 to 0.2.111 in /python #2449

build(deps): bump webdataset from 0.2.100 to 0.2.111 in /python

build(deps): bump webdataset from 0.2.100 to 0.2.111 in /python #2449

Workflow file for this run

name: Python ETL Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
strategy:
matrix:
python-version: ['3.9','3.10','3.11','3.12','3.13']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup-minikube
uses: medyagh/setup-minikube@latest
with:
driver: docker
container-runtime: docker
cpus: max
memory: max
timeout-minutes: 5
- name: Run AIStore in Minikube
run: |
cd $GITHUB_WORKSPACE/deploy/dev/k8s/
./minimal.sh
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python ETL Tests
run: |
cd $GITHUB_WORKSPACE/python/
export AIS_ENDPOINT="http://$(minikube ip):8080"
make python_etl_tests