From fdeca0db7ef0612a0a592c63fa27669d70d1e1ba Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Sat, 20 Aug 2022 14:27:03 -0400 Subject: [PATCH] Update testing.yml --- .github/workflows/testing.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 4f259eb5..618fa283 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -29,12 +29,14 @@ jobs: git config --global user.email "CI@example.com" git config --global user.name "CI Almighty" pip install wheel # needed for scanimage - - name: Test minimal installation - run: pip install . - - name: Test full installation - run: pip install .[full] - - name: Install testing requirements (-e needed for codecov report) - run: pip install -e .[test] + + - name: Install roiextractors with minimal requirements + run: pip install .[test] + - name: Run minimal tests + run: pytest tests/test_internals -n auto --dist loadscope + + - name: Test full installation (-e needed for codecov report) + run: pip install -e .[full] - name: Get ophys_testing_data current head hash id: ophys