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

check root .gitignore in '_ignored' #3284

Merged
merged 6 commits into from
Feb 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions dvc/scm/git/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
from dvc.utils import relpath
from dvc.utils.fs import path_isin


logger = logging.getLogger(__name__)


Expand Down Expand Up @@ -133,20 +132,19 @@ def _get_gitignore(self, path):

return entry, gitignore

@staticmethod
def _ignored(entry, gitignore_path):
if os.path.exists(gitignore_path):
with open(gitignore_path, "r") as fobj:
ignore_list = fobj.readlines()
return any(
filter(lambda x: x.strip() == entry.strip(), ignore_list)
)
return False
def _ignored(self, path):
from git.exc import GitCommandError

try:
self.repo.git.check_ignore(path)
return True
except GitCommandError:
return False

def ignore(self, path):
entry, gitignore = self._get_gitignore(path)

if self._ignored(entry, gitignore):
if self._ignored(path):
return

msg = "Adding '{}' to '{}'.".format(relpath(path), relpath(gitignore))
Expand Down
6 changes: 6 additions & 0 deletions tests/dir_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

import os
import pathlib
import logging
from contextlib import contextmanager

import pytest
Expand All @@ -65,6 +66,11 @@
]


# see https://github.com/iterative/dvc/issues/3167
git_logger = logging.getLogger("git")
git_logger.setLevel(logging.CRITICAL)


class TmpDir(pathlib.Path):
def __new__(cls, *args, **kwargs):
if cls is TmpDir:
Expand Down
6 changes: 1 addition & 5 deletions tests/func/test_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,7 @@ def test_get_from_non_dvc_master(tmp_dir, git_dir, caplog):

caplog.clear()

# removing `git` import in conftest resulted in unexpected logs from
# that package, see https://github.com/iterative/dvc/issues/3167
with caplog.at_level(logging.INFO, logger="git"), caplog.at_level(
logging.INFO, logger="dvc"
):
with caplog.at_level(logging.INFO, logger="dvc"):
Repo.get(fspath(git_dir), "some_file", out="some_dst", rev="branch")

assert caplog.text == ""
Expand Down
8 changes: 8 additions & 0 deletions tests/func/test_scm.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ def test_ignore(tmp_dir, scm):
assert _count_gitignore_entries(target) == 0


def test_ignored(tmp_dir, scm):
tmp_dir.gen({"dir1": {"file1.jpg": "cont", "file2.txt": "cont"}})
tmp_dir.gen({".gitignore": "dir1/*.jpg"})

assert scm._ignored(fspath(tmp_dir / "dir1" / "file1.jpg"))
assert not scm._ignored(fspath(tmp_dir / "dir1" / "file2.txt"))


def test_get_gitignore(tmp_dir, scm):
tmp_dir.gen({"file1": "contents", "dir": {}})

Expand Down