diff options
| author | Derek Gustafson <degustaf@gmail.com> | 2016-12-02 21:13:12 +0000 |
|---|---|---|
| committer | Derek Gustafson <degustaf@gmail.com> | 2016-12-06 15:49:32 +0000 |
| commit | 5ff3e04e423036fa7cf65fe3ed38e76f3a1e821d (patch) | |
| tree | 57e466b603a65c3bbaccd84f3392ae54be3c3e75 /pylint/testutils.py | |
| parent | 2e692c6d127090d91a29867244ad112b199747e6 (diff) | |
| download | pylint-git-5ff3e04e423036fa7cf65fe3ed38e76f3a1e821d.tar.gz | |
Added test_func tests back in.
Diffstat (limited to 'pylint/testutils.py')
| -rw-r--r-- | pylint/testutils.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pylint/testutils.py b/pylint/testutils.py index eae32a03f..96b33eb36 100644 --- a/pylint/testutils.py +++ b/pylint/testutils.py @@ -274,6 +274,10 @@ class LintTestUsingModule(unittest.TestCase): _TEST_TYPE = 'module' maxDiff = None + def runTest(self): + # This is a hack to make ./test/test_func.py work under pytest. + pass + def shortDescription(self): values = {'mode' : self._TEST_TYPE, 'input': self.module, |
