[object Object]

← back to Exo

github workflow: use python3 consistently

62a2407352c7f4335ff8b0f044c8eaa9f7408a76 · 2024-07-19 23:38:25 -0700 · Alex Cheema

Files touched

Diff

commit 62a2407352c7f4335ff8b0f044c8eaa9f7408a76
Author: Alex Cheema <alexcheema123@gmail.com>
Date:   Fri Jul 19 23:38:25 2024 -0700

    github workflow: use python3 consistently
---
 .github/workflows/test.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index eae3d043..25ae9679 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -17,7 +17,7 @@ jobs:
         python-version: '3.12'
     - name: Install dependencies
       run: |
-        python -m pip install --upgrade pip
+        python3 -m pip install --upgrade pip
         pip install .
     - name: Run tests
-      run: python -m exo.inference.test_inference_engine
+      run: python3 -m exo.inference.test_inference_engine

← ba1916a3 github workflow for tests  ·  back to Exo  ·  fix invalid escape sequence exo_text 56e5e34e →