From 76557099b0948774907f18736830f34ca71f17e0 Mon Sep 17 00:00:00 2001 From: dongyuwei Date: Wed, 30 Oct 2024 20:26:34 +0800 Subject: [PATCH] run pip install before unit tests. --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c593381a..14b0b8df 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,6 +12,9 @@ jobs: - uses: actions/checkout@v3 with: submodules: 'true' + - name: Pip Install + run: | + cmd /C ".\python\python3\virtualenv\Scripts\python.exe" -m pip install -r .\python\input_methods\hallelujah\requirements.txt - name: Run Unit Tests run: | cmd /C ".\python\python3\virtualenv\Scripts\python.exe" ".\python\input_methods\hallelujah\test.py"