From 0b3f1a36505364c8e570481e6d695b8f8138aa10 Mon Sep 17 00:00:00 2001 From: azul Date: Sat, 4 May 2024 18:19:38 -0700 Subject: [PATCH 1/2] fix: update distributed to computing at scale --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a446877..abcfadd1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,8 +88,8 @@ jobs: run: pip install -e ".[dev]" - name: Run tests - run: nbdev_test --skip_file_glob "*distributed*" + run: nbdev_test --skip_file_glob "*computing_at_scale*" - name: Run tests with distributed (ubuntu) if: matrix.os == 'ubuntu-latest' - run: nbdev_test --file_glob "*distributed*" + run: nbdev_test --file_glob "*computing_at_scale*" From 7c85cd89f6a6315da0e94ef266646363e21a1112 Mon Sep 17 00:00:00 2001 From: azul Date: Sat, 4 May 2024 18:35:43 -0700 Subject: [PATCH 2/2] fix: add distributed nb --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index abcfadd1..9a499603 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,8 +88,8 @@ jobs: run: pip install -e ".[dev]" - name: Run tests - run: nbdev_test --skip_file_glob "*computing_at_scale*" + run: nbdev_test --skip_file_glob "*computing_at_scale*" --skip_file_glob "*distributed*" - name: Run tests with distributed (ubuntu) if: matrix.os == 'ubuntu-latest' - run: nbdev_test --file_glob "*computing_at_scale*" + run: nbdev_test --file_glob "*computing_at_scale*" --file_glob "*distributed*"