示例#1
0
def requires_image(image):
    """Decorator for checking docker image existance.
    Image existence is cached on first check.
    """
    if image not in _images:
        _images[image] = docker.image_exists(image)

    return skipIf(not(_images[image]), u'requires the {} image'.format(image))
示例#2
0
def requires_image(image):
    """Decorator for checking docker image existence.

    Image existence is cached on first check.
    """
    if image not in _images:
        _images[image] = docker.image_exists(image)

    return skipIf(not(_images[image]), u'requires the {} image'.format(image))
示例#3
0
    def test_execute__install_plugins_cleanup_image_on_failure(self):
        custom_dir = root_dir + '/tests/fixtures/eslint_custom'
        tool = Eslint(self.problems, {
            'config': 'invalid.json',
            'install_plugins': True,
            'fixer': True
        }, custom_dir)
        target = 'has_errors.js'
        tool.process_files([target])

        problems = self.problems.all()
        eq_(1, len(problems))
        assert_in('Cannot find module', problems[0].body)

        ok_(docker.image_exists('nodejs'), 'original image is present')
        assert_not_in('eslint', docker.images(), 'no eslint image remains')
示例#4
0
    def test_execute__install_plugins(self):
        custom_dir = root_dir + '/tests/fixtures/eslint_custom'
        tool = Eslint(self.problems, {
            'config': 'config.json',
            'install_plugins': True,
            'fixer': True
        }, custom_dir)
        target = 'has_errors.js'
        tool.process_files([target])

        problems = self.problems.all()
        eq_(2, len(problems), 'Should find errors')
        assert_in('Unexpected var', problems[0].body)

        ok_(docker.image_exists('nodejs'), 'original image is present')
        assert_not_in('eslint', docker.images(), 'no eslint image remains')
示例#5
0
    def test_execute__install_plugins_cleanup_image_on_failure(self):
        custom_dir = root_dir + '/tests/fixtures/eslint_custom'
        tool = Eslint(self.problems, {
            'config': 'invalid.json',
            'install_plugins': True,
            'fixer': True
        }, custom_dir)
        target = 'has_errors.js'
        tool.process_files([target])

        problems = self.problems.all()
        self.assertEqual(1, len(problems))
        self.assertIn('Cannot find module', problems[0].body)

        self.assertTrue(docker.image_exists('eslint'),
                        'original image is present')
        for image in docker.images():
            self.assertNotIn('eslint-', image, 'no eslint image remains')
示例#6
0
    def test_execute__install_plugins_cleanup_image_on_failure(self):
        custom_dir = root_dir + '/tests/fixtures/eslint_custom'
        tool = Eslint(self.problems, {
            'config': 'invalid.json',
            'install_plugins': True,
            'fixer': True
        }, custom_dir)
        target = 'has_errors.js'
        tool.process_files([target])

        problems = self.problems.all()
        self.assertEqual(1, len(problems))
        self.assertIn('invalid-rules', problems[0].body)
        self.assertIn('output the following error', problems[0].body)

        self.assertTrue(docker.image_exists('eslint'),
                        'original image is present')
        for image in docker.images():
            self.assertNotIn('eslint-', image, 'no eslint image remains')
示例#7
0
    def test_execute__install_plugins(self):
        custom_dir = root_dir + '/tests/fixtures/eslint_custom'
        tool = Eslint(self.problems, {
            'config': 'config.json',
            'install_plugins': True,
            'fixer': True
        }, custom_dir)
        target = 'has_errors.js'
        tool.process_files([target])

        problems = self.problems.all()
        self.assertEqual(2, len(problems), 'Should find errors')
        self.assertIn('Unexpected var', problems[0].body)

        self.assertTrue(docker.image_exists('nodejs'),
                        'original image is present')

        for image in docker.images():
            self.assertNotIn('eslint-', image, 'no eslint image remains')
示例#8
0
 def test_image_exists__no_exist(self):
     self.assertFalse(docker.image_exists('nevergonnaexist:tacos'))
示例#9
0
 def check_dependencies(self):
     """
     See if ruby image exists
     """
     return docker.image_exists('ruby2')
示例#10
0
 def check_dependencies(self):
     """
     See if the gpg image exists
     """
     return docker.image_exists('gpg')
示例#11
0
文件: gpg.py 项目: jpos15/lint-review
 def check_dependencies(self):
     """
     See if the gpg image exists
     """
     return docker.image_exists('gpg')
示例#12
0
 def check_dependencies(self):
     """See if the nodejs image exists
     """
     return docker.image_exists('nodejs')
示例#13
0
 def check_dependencies(self):
     """
     See if the python2 image exists
     """
     return docker.image_exists('python2')
示例#14
0
 def check_dependencies(self):
     """
     See if python image is available
     """
     return docker.image_exists('python2')
示例#15
0
 def check_dependencies(self):
     """
     See if python2 or python3 image exists
     """
     return docker.image_exists('python2') or docker.image_exists('python3')
示例#16
0
 def check_dependencies(self):
     """
     See if python2 container exists
     """
     return docker.image_exists('python2')
示例#17
0
 def check_dependencies(self):
     """
     See if nodejs container exists
     """
     return docker.image_exists('nodejs')
示例#18
0
 def check_dependencies(self):
     """
     See if ruby image exists
     """
     return docker.image_exists('ruby2')
示例#19
0
 def check_dependencies(self):
     return docker.image_exists('nodejs')
示例#20
0
 def test_image_exists__no_exist(self):
     self.assertFalse(docker.image_exists('nevergonnaexist:tacos'))
示例#21
0
 def check_dependencies(self):
     """See if the nodejs image exists
     """
     return docker.image_exists('eslint')
示例#22
0
 def check_dependencies(self):
     """
     See if swiftlint is on the system path.
     """
     return docker.image_exists('swiftlint')
示例#23
0
 def check_dependencies(self):
     """
     See if standard is on the system path.
     """
     return docker.image_exists('nodejs')
示例#24
0
 def check_dependencies(self):
     """
     See if credo image exists
     """
     return docker.image_exists('credo')
示例#25
0
 def check_dependencies(self):
     """
     See if foodcritic is on the PATH
     """
     return docker.image_exists('ruby2')
示例#26
0
 def check_dependencies(self):
     """
     See if foodcritic is on the PATH
     """
     return docker.image_exists('ruby2')
示例#27
0
 def check_dependencies(self):
     """
     See if python2 image is installed
     """
     return docker.image_exists('python2')
示例#28
0
 def check_dependencies(self):
     """
     See if golint image exists
     """
     return docker.image_exists('golint')
示例#29
0
 def check_dependencies(self):
     """
     See if nodejs image exists
     """
     return docker.image_exists('nodejs')
示例#30
0
 def check_dependencies(self):
     """
     See if python image is available
     """
     return docker.image_exists('python2')
示例#31
0
 def check_dependencies(self):
     """
     See if checkstyle image exists
     """
     return docker.image_exists('checkstyle')
示例#32
0
 def check_dependencies(self):
     """
     See if PHPCS is on the system path.
     """
     return docker.image_exists('phpcs')
示例#33
0
 def check_dependencies(self):
     """
     See if luacheck image exists
     """
     return docker.image_exists('luacheck')
示例#34
0
 def check_dependencies(self):
     """
     See if credo image exists
     """
     return docker.image_exists('credo')
示例#35
0
 def check_dependencies(self):
     return docker.image_exists('credo')
示例#36
0
 def check_dependencies(self):
     """
     See if checkstyle image exists
     """
     return docker.image_exists('checkstyle')
示例#37
0
 def check_dependencies(self):
     """
     See if python2 image is installed
     """
     return docker.image_exists('python2')
示例#38
0
 def check_dependencies(self):
     """
     See if the php container exists
     """
     return docker.image_exists('php')
示例#39
0
 def check_dependencies(self):
     return docker.image_exists('luacheck')
示例#40
0
 def check_dependencies(self):
     """
     See if swiftlint is on the system path.
     """
     return docker.image_exists('swiftlint')
示例#41
0
 def check_dependencies(self):
     return docker.image_exists('python2')
示例#42
0
 def check_dependencies(self):
     """
     See if the python2 image exists
     """
     return docker.image_exists('python2')
示例#43
0
 def check_dependencies(self):
     """
     See if PHPCS is on the system path.
     """
     return docker.image_exists('phpcs')