From 010d5507cb16a882a1683b949a23fa4f66fd101d Mon Sep 17 00:00:00 2001 From: Henrik <89074178+henrikfo@users.noreply.github.com> Date: Tue, 28 Jan 2025 23:38:42 +0100 Subject: [PATCH 1/2] Update run_tests.yml Adding pdf tool to test suite --- .github/workflows/run_tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index a3c19655..c54eea3e 100755 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -29,6 +29,10 @@ jobs: pip install ruff ruff check leakpro --exclude examples,leakpro/tests + - name: Install PDF compiling tool + run: | + apt update ; apt install texlive-latex-base + - name: Install pytest and pytest-cov run: | pip install pytest pytest-cov pytest-mock coverage-badge @@ -47,4 +51,4 @@ jobs: uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages - folder: badges \ No newline at end of file + folder: badges From 38c1ce6d89b5851b238da844440473e70dac8011 Mon Sep 17 00:00:00 2001 From: Henrik <89074178+henrikfo@users.noreply.github.com> Date: Tue, 28 Jan 2025 23:45:01 +0100 Subject: [PATCH 2/2] Update run_tests.yml --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index c54eea3e..3b1b8005 100755 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -31,7 +31,7 @@ jobs: - name: Install PDF compiling tool run: | - apt update ; apt install texlive-latex-base + sudo apt update ; sudo apt install -y texlive-latex-base - name: Install pytest and pytest-cov run: |