コード例 #1
0
 def test_ignored_path(self, path):
     self.assertTrue(
         bool(codecov.ignored_path("/home/ubuntu/" + path)),
         path + " should be ignored",
     )
     self.assertTrue(
         bool(codecov.ignored_path("/home/ubuntu/" + path + "/more paths")),
         path + " should be ignored",
     )
コード例 #2
0
 def test_ignored_path(self, path):
     self.assertTrue(bool(codecov.ignored_path('/home/ubuntu/' + path)),
                     path + ' should be ignored')
     self.assertTrue(
         bool(codecov.ignored_path('/home/ubuntu/' + path + '/more paths')),
         path + ' should be ignored')
コード例 #3
0
ファイル: test.py プロジェクト: grigouze/codecov-python
 def test_ignored_path(self, path):
     self.assertTrue(bool(codecov.ignored_path('/home/ubuntu/' + path)), path + ' should be ignored')
     self.assertTrue(bool(codecov.ignored_path('/home/ubuntu/' + path + '/more paths')), path + ' should be ignored')
コード例 #4
0
ファイル: test.py プロジェクト: bukzor/codecov-python
 def test_ignored_path(self, path):
     self.assertTrue(bool(codecov.ignored_path("/home/ubuntu/" + path)), path + " should be ignored")
     self.assertTrue(bool(codecov.ignored_path("/home/ubuntu/" + path + "/more paths")), path + " should be ignored")