From 798f1a3d3ccd0749d1d91e543856798d92f6f95f Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Mon, 17 Jun 2024 11:59:10 -0700 Subject: [PATCH] Update testing.yml --- .github/workflows/testing.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 27165cc61..73f9aaf7d 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -28,20 +28,14 @@ jobs: pip install pytest pip install pytest-cov + - name: Install ROS3 + run: conda install -c conda-forge h5py - name: Install package run: pip install ".[dandi]" - name: Download testing data and set config path run: | dandi download "https://gui-staging.dandiarchive.org/#/dandiset/204919" python -c "from nwbinspector.testing import update_testing_config; update_testing_config(key='LOCAL_PATH', value='./204919/testing_files/')" - - name: Uninstall h5py - run: pip uninstall -y h5py - - name: Install ROS3 - run: conda install -c conda-forge h5py - - name: Install HDMF-zarr # temporary - run: pip install hdmf-zarr - - name: Install latest HDMF # temporary - run: pip install -U hdmf - name: Run pytest with coverage run: |