Exclude more files from the container

This commit is contained in:
Andreas Zweili 2022-12-12 16:18:25 +01:00
parent 32e0407ea0
commit b1f2125e55
1 changed files with 3 additions and 0 deletions

View File

@ -49,6 +49,7 @@
".flake8" ".flake8"
".gitignore" ".gitignore"
".gitlab-ci.yml" ".gitlab-ci.yml"
"conftest.py"
"docker-compose.yaml" "docker-compose.yaml"
"flake.lock" "flake.lock"
"flake.nix" "flake.nix"
@ -57,7 +58,9 @@
"poetry.toml" "poetry.toml"
"pyproject.toml" "pyproject.toml"
"pytest.ini" "pytest.ini"
"__pycache__"
"*.pyc" "*.pyc"
"tests"
]); ]);
src = ./.; src = ./.;
}); });