Skip to content

Commit

Permalink
Remove python 3.2 no covers
Browse files Browse the repository at this point in the history
We now get the joined coverage across all versions.
  • Loading branch information
sils committed Jun 24, 2015
1 parent ff26b2b commit 7ff3312
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coalib/parsing/ConfParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class ConfParser:
if sys.version_info < (3, 3): # pragma: no cover
if sys.version_info < (3, 3):
FileNotFoundError = IOError
else:
FileNotFoundError = FileNotFoundError
Expand Down
2 changes: 1 addition & 1 deletion coalib/tests/output/ConsoleInteractorTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def setUp(self):
Result.get_actions = lambda x: []
PatchResult.get_actions = lambda x: [ApplyPatchAction()]

if sys.version_info < (3, 3): # pragma: no cover
if sys.version_info < (3, 3):
self.FileNotFoundError = OSError
else:
self.FileNotFoundError = FileNotFoundError
Expand Down

0 comments on commit 7ff3312

Please sign in to comment.