diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 853af66..3c53ca7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,16 +43,16 @@ jobs: robocopy miktex-portable C:\tmp\test_miktex\miktex-portable /E /NFL /NDL if ($LASTEXITCODE -eq 1) { exit 0 } - - name: Add miktex and git tools to PATH + - name: Add miktex to PATH run: | - echo "PATH=$PATH;C:\tmp\test_miktex\miktex-portable\texmfs\install\miktex\bin\x64\" | Out-File -FilePath $env:GITHUB_ENV -Append - echo "PATH=$PATH;C:\Program Files\Git\usr\bin\" | Out-File -FilePath $env:GITHUB_ENV -Append + echo "PATH=$PATH;C:\tmp\test_miktex\miktex-portable\texmfs\install\miktex\bin\x64;C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_ENV -Append - name: test xelatex run: xelatex --version - name: Install Python dependencies - run: pip install -e .[dev] + run: | + python -m pip install -e .[dev] - name: Run tests with pytest run: pytest