Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skipping latex tasks does not work when latexmk is not installed #78

Open
timmens opened this issue Nov 20, 2024 · 2 comments
Open

Skipping latex tasks does not work when latexmk is not installed #78

timmens opened this issue Nov 20, 2024 · 2 comments

Comments

@timmens
Copy link

timmens commented Nov 20, 2024

Hey!

As the title says, when I try to skip a task marked with pytask.mark.latex, I get an error unless latexmk is installed. I imagine you already know this, but I've included a use case and an MRE below, nevertheless.

Use Case

I run/develop a project on multiple machines and want to skip latex- related tasks on some of them; and I do not want to install latexmk on them.

MRE

Using pytask's conftest.py:

from pytask import cli, ExitCode
import textwrap


def test_pytask(runner, tmp_path, monkeypatch):
    source = """
    from pathlib import Path
    from pytask import mark

    @mark.skip()
    @mark.latex(script=Path("document.tex"), document=Path("document.pdf"))
    def task_compile_latex_document():
        pass
    """
    # Works with latexmk in PATH.
    tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
    result = runner.invoke(cli, [tmp_path.as_posix()])
    assert result.exit_code == ExitCode.OK

    # Fails with latexmk removed from PATH.
    monkeypatch.setenv("PATH", "")
    tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source))
    result = runner.invoke(cli, [tmp_path.as_posix()])
    assert result.exit_code == ExitCode.FAILED
    
    # Print error message
    print(result.stdout)

Which produces:

Versions

  • pytask: 0.5.1
  • pytask-latex 0.4.2
  • python: 3.13
@tobiasraabe
Copy link
Member

Thanks for the fantastic reproduction! pytask-latex probably checks for latexmk before we evaluate the skip. Maybe we want to check for latexmk only right before the execution.

@timmens
Copy link
Author

timmens commented Nov 21, 2024

That would be a nice solution. But wouldn't that imply that, for example, pytask collect won't throw an error if latexmk is not installed (even if there is no skip present)? Though, maybe pytask collect shouldn't raise an error in that case anyway.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants