From d1df3bdaf213ae18260ce6fa3d5269a7c3736d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pl=C3=ADchal?= Date: Fri, 15 Dec 2023 09:45:17 +0100 Subject: [PATCH] Ignore tarballs and generated man page Prevent comitting `tests/full/repo_copy.tgz` and man page generated from the `overview.rst`. --- .gitignore | 2 ++ pyproject.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e335335fe8..86a7596b2c 100644 --- a/.gitignore +++ b/.gitignore @@ -32,10 +32,12 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST +tmt.1 # Testing .mypy_cache .pytest_cache +*.tgz # Virtual environment .env diff --git a/pyproject.toml b/pyproject.toml index bf381a43a3..fb2903a93d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,6 +103,8 @@ include = [ "/.fmf", ] +artifacts = ["tmt.1"] + [tool.hatch.envs.default] platforms = ["linux"]