mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-25 14:08:18 +01:00
4ca70d4e48
Summary: flake8 is the better maintained combination of pep8 and pyflakes Test Plan: There's a test! Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin, jack Differential Revision: https://secure.phabricator.com/D4082
19 lines
444 B
PHP
19 lines
444 B
PHP
<?php
|
|
/**
|
|
* Test cases for @{class:ArcanistFlake8Linter}.
|
|
*
|
|
* @group testcase
|
|
*/
|
|
final class ArcanistFlake8LinterTestCase
|
|
extends ArcanistArcanistLinterTestCase {
|
|
|
|
public function testFlake8Lint() {
|
|
$linter = new ArcanistFlake8Linter();
|
|
$working_copy = ArcanistWorkingCopyIdentity::newFromPath(__FILE__);
|
|
return $this->executeTestsInDirectory(
|
|
dirname(__FILE__).'/python/',
|
|
$linter,
|
|
$working_copy);
|
|
}
|
|
|
|
}
|