From f5f66c14d36db761ae9198a0a3c059101bec412c Mon Sep 17 00:00:00 2001 From: moi15moi <80980684+moi15moi@users.noreply.github.com> Date: Tue, 23 Jan 2024 18:43:50 -0500 Subject: [PATCH] [workflows\run_test] On Windows, update the environment vars Without this, the workflow is not able to call mkvmerge in command line --- .github/workflows/run_test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_test.yml b/.github/workflows/run_test.yml index 1699c66..5b65e52 100644 --- a/.github/workflows/run_test.yml +++ b/.github/workflows/run_test.yml @@ -36,7 +36,9 @@ jobs: - name: Install platform-specific requirements (Windows) if: matrix.os == 'windows-latest' - run: choco install mkvtoolnix + run: | + choco install mkvtoolnix + refreshenv - name: Install pytest run: |