Exemplo n.º 1
0
 def test_is_report(self, path):
     self.assertFalse(
         bool(codecov.ignored_report("/home/file/" + path)),
         path + " should not be ignored",
     )
     self.assertTrue(bool(codecov.is_report("/home/file/" + path)),
                     path + " should be a report")
Exemplo n.º 2
0
 def test_ignore_report(self, path):
     self.assertTrue(bool(codecov.ignored_report('/home/file/' + path)),
                     path + ' should be ignored')
Exemplo n.º 3
0
 def test_is_report(self, path):
     self.assertFalse(bool(codecov.ignored_report('/home/file/' + path)),
                      path + ' should not be ignored')
     self.assertTrue(bool(codecov.is_report('/home/file/' + path)),
                     path + ' should be a report')
Exemplo n.º 4
0
 def test_ignore_report(self, path):
     self.assertTrue(
         bool(codecov.ignored_report("/home/file/" + path)),
         path + " should be ignored",
     )
Exemplo n.º 5
0
 def test_ignore_report(self, path):
     self.assertTrue(bool(codecov.ignored_report('/home/file/' + path)), path + ' should be ignored')
Exemplo n.º 6
0
 def test_is_report(self, path):
     self.assertFalse(bool(codecov.ignored_report('/home/file/' + path)), path + ' should not be ignored')
     self.assertTrue(bool(codecov.is_report('/home/file/' + path)), path + ' should be a report')
Exemplo n.º 7
0
 def test_ignore_report(self, path):
     self.assertTrue(bool(codecov.ignored_report("/home/file/" + path)), path + " should be ignored")
Exemplo n.º 8
0
 def test_is_report(self, path):
     self.assertFalse(bool(codecov.ignored_report("/home/file/" + path)), path + " should not be ignored")
     self.assertTrue(bool(codecov.is_report("/home/file/" + path)), path + " should be a report")