Add UPLOADED state to Zarr models #2432
Workflow file for this run
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: Test Integration with dandi-cli | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "web/**" | |
pull_request: | |
paths-ignore: | |
- "web/**" | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out this repository | |
uses: actions/checkout@v4 | |
- name: Build Docker image | |
run: | | |
docker build \ | |
-t dandiarchive/dandiarchive-api \ | |
-f dev/django-public.Dockerfile \ | |
. | |
- name: Export Docker image | |
run: | | |
docker image save -o dandiarchive-api.tgz dandiarchive/dandiarchive-api | |
- name: Upload Docker image tarball | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dandiarchive-api.tgz | |
path: dandiarchive-api.tgz | |
test: | |
runs-on: ubuntu-latest | |
needs: build-image | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- "3.10" | |
dandi-version: | |
- release | |
- master | |
env: | |
DANDI_ALLOW_LOCALHOST_URLS: 1 | |
DANDI_TESTS_PULL_DOCKER_COMPOSE: 0 | |
steps: | |
- name: Download Docker image tarball | |
uses: actions/download-artifact@v3 | |
with: | |
name: dandiarchive-api.tgz | |
- name: Import Docker image | |
run: docker image load -i dandiarchive-api.tgz | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
- name: Install released dandi | |
if: matrix.dandi-version == 'release' | |
run: pip install "dandi[test]" | |
- name: Install dev dandi | |
if: matrix.dandi-version == 'master' | |
run: pip install "dandi[test] @ git+https://github.com/dandi/dandi-cli" | |
- name: Run dandi-api tests in dandi-cli | |
run: | | |
python -m pytest --dandi-api \ | |
"$pythonLocation/lib/python${{ matrix.python }}/site-packages/dandi" | |
env: | |
DANDI_TESTS_PERSIST_DOCKER_COMPOSE: "1" | |
- name: Dump Docker Compose logs | |
if: failure() | |
run: | | |
docker-compose \ | |
-f "$pythonLocation/lib/python${{ matrix.python }}/site-packages/dandi/tests/data/dandiarchive-docker/docker-compose.yml" \ | |
logs --timestamps | |
- name: Shut down Docker Compose | |
run: | | |
docker-compose \ | |
-f "$pythonLocation/lib/python${{ matrix.python }}/site-packages/dandi/tests/data/dandiarchive-docker/docker-compose.yml" \ | |
down -v |