From 891d4baeb5cfd849e3af0f1c25537612442e3870 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Wed, 19 Apr 2017 19:41:09 +0300 Subject: [PATCH] tidied --- tests/style/py-flake8.t | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/tests/style/py-flake8.t b/tests/style/py-flake8.t index 9fc0aedc..13fa2884 100644 --- a/tests/style/py-flake8.t +++ b/tests/style/py-flake8.t @@ -9,39 +9,39 @@ use Test::Differences qw( eq_or_diff ); use File::Find::Object (); use String::ShellQuote qw/ shell_quote /; -my %skip = -( +my %skip = ( map { $_ => 1 } - qw( - pysollib/games/__init__.py - pysollib/games/mahjongg/__init__.py - pysollib/games/mahjongg/mahjongg1.py - pysollib/games/mahjongg/mahjongg2.py - pysollib/games/mahjongg/mahjongg3.py - pysollib/games/special/__init__.py - pysollib/games/ultra/__init__.py - pysollib/pysoltk.py - scripts/all_games.py - pysollib/tile/ttk.py - ) + qw( + pysollib/games/__init__.py + pysollib/games/mahjongg/__init__.py + pysollib/games/mahjongg/mahjongg1.py + pysollib/games/mahjongg/mahjongg2.py + pysollib/games/mahjongg/mahjongg3.py + pysollib/games/special/__init__.py + pysollib/games/ultra/__init__.py + pysollib/pysoltk.py + scripts/all_games.py + pysollib/tile/ttk.py + ) ); -my $tree = File::Find::Object->new({}, '.'); +my $tree = File::Find::Object->new( {}, '.' ); my @filenames; -while (my $r = $tree->next_obj) +while ( my $r = $tree->next_obj ) { my $fn = $r->path; - if ($fn eq '.git' or $fn eq 'tests/individually-importing') + if ( $fn eq '.git' or $fn eq 'tests/individually-importing' ) { $tree->prune; } - elsif ($fn =~ /\.py\z/ and !exists($skip{$fn})) + elsif ( $fn =~ /\.py\z/ and !exists( $skip{$fn} ) ) { push @filenames, $fn; } } -my $cmd = shell_quote( 'flake8', @filenames); +my $cmd = shell_quote( 'flake8', @filenames ); + # diag("<$cmd>"); # TEST