perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / RBTools / patches / 03-skip-p4-tests.patch
blob0a79afe4f5bc9c4623fd404075135543ed1a1267
1 --- RBTools-5.0/rbtools/clients/tests/test_git.py.orig
2 +++ RBTools-5.0/rbtools/clients/tests/test_git.py
3 @@ -23,6 +23,8 @@
4 run_process,
5 run_process_exec)
7 +import pytest
10 class BaseGitClientTests(SCMClientTestCase):
11 """Base class for unit tests for GitClient.
12 @@ -1908,6 +1910,7 @@
13 self.assertEqual(repository_info.local_path, self.checkout_dir)
14 self.assertEqual(client._type, client.TYPE_GIT_P4)
16 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
17 def test_diff(self):
18 """Testing GitClient.diff with git-p4"""
19 client = self.build_client(needs_diff=True)
20 @@ -1966,6 +1969,7 @@
21 'parent_diff': None,
24 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
25 def test_diff_with_spaces_in_filename(self):
26 """Testing GitClient.diff with git-p4 with spaces in filename"""
27 client = self.build_client(needs_diff=True)
28 @@ -2012,6 +2016,7 @@
29 'parent_diff': None,
32 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
33 def test_diff_with_rename(self):
34 """Testing GitClient.diff with renamed file"""
35 client = self.build_client(needs_diff=True)
36 @@ -2041,6 +2046,7 @@
37 'parent_diff': None,
40 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
41 def test_diff_with_rename_and_changes(self):
42 """Testing GitClient.diff with renamed file and changes"""
43 client = self.build_client(needs_diff=True)
44 @@ -2083,6 +2089,7 @@
45 'parent_diff': None,
48 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
49 def test_diff_with_deletes(self):
50 """Testing GitClient.diff with deleted files"""
51 client = self.build_client(needs_diff=True)
52 @@ -2124,6 +2131,7 @@
53 'parent_diff': None,
56 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
57 def test_diff_with_multiple_commits(self):
58 """Testing GitClient.diff with git-p4 and multiple commits"""
59 client = self.build_client(needs_diff=True)
60 @@ -2166,6 +2174,7 @@
61 'parent_diff': None,
64 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
65 def test_diff_with_exclude_patterns(self):
66 """Testing GitClient.diff with git-p4 and file exclusion"""
67 client = self.build_client(needs_diff=True)
68 @@ -2199,6 +2208,7 @@
69 'parent_diff': None,
72 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
73 def test_diff_exclude_in_subdir(self):
74 """Testing GitClient simple diff with file exclusion in a subdir"""
75 client = self.build_client(needs_diff=True)
76 @@ -2235,6 +2245,7 @@
77 'parent_diff': None,
80 + @pytest.mark.skip(reason="always fails: https://hellosplat.com/s/beanbag/tickets/4996/")
81 def test_diff_with_exclude_patterns_root_pattern_in_subdir(self):
82 """Testing GitClient diff with file exclusion in the repo root"""
83 client = self.build_client(needs_diff=True)