Skip to content
This repository has been archived by the owner on May 3, 2020. It is now read-only.

Commit

Permalink
tests: skip loader test on Python-3.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Simko <tibor.simko@cern.ch>
  • Loading branch information
tiborsimko committed Aug 1, 2014
1 parent 5978de5 commit afc39fb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/test_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,11 @@ def setUp(self):
self.client = self.app.test_client()


# The following test is known to fail on Python 3.4.0 while it
# works well on lesser or higher Pythons. (Additionally cannot
# use unittest.skipIf() here due to Python-2.6.)
if sys.version_info != (3, 4, 0, 'final', 0):
# The following test is known to fail on Python 3.4.0 and 3.4.1
# while it works well on lesser or higher Pythons. (Additionally
# cannot use unittest.skipIf() here due to Python-2.6.)
if sys.version_info != (3, 4, 0, 'final', 0) and \
sys.version_info != (3, 4, 1, 'final', 0):
def test_blueprint_loaded(self):
# Test that app is loaded and that blueprints have been registered
response = self.client.get("/")
Expand Down

0 comments on commit afc39fb

Please sign in to comment.