From 37194a5b9af1adc4bf72993bca774dbdf658aee8 Mon Sep 17 00:00:00 2001 From: ehsanmok <6980212+ehsanmok@users.noreply.github.com> Date: Wed, 26 Apr 2023 18:10:06 -0700 Subject: [PATCH] Use make for uniformity --- .github/workflows/client-tests.yaml | 2 +- .github/workflows/tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client-tests.yaml b/.github/workflows/client-tests.yaml index 7ccef3b0..1fa0b39d 100644 --- a/.github/workflows/client-tests.yaml +++ b/.github/workflows/client-tests.yaml @@ -22,4 +22,4 @@ jobs: - name: Run tests run: | pip install pytest pytest-asyncio - cd clients/python && pytest tests + make python-client-tests diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 26cbf3b2..d9858a3b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -66,7 +66,7 @@ jobs: - name: Run server tests run: | pip install pytest - HF_HUB_ENABLE_HF_TRANSFER=1 pytest -sv server/tests + make python-server-tests - name: Run Rust fmt run: | cargo fmt --check