Skip to content

Commit

Permalink
Fix java tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Bastida committed Jun 2, 2016
1 parent 96b5d02 commit 7dea728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lambdajava/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from gordon import utils


@unittest.skipIf(os.environ.get('TRAVIS') == 'true', "Test not yet supported on travis")
@unittest.skip("Temporarily disabled")
class IntegrationTest(BaseIntegrationTest):

def test_0001_project(self):
Expand All @@ -32,7 +32,7 @@ def test_0001_project(self):
self.assert_lambda_response(response, 'hello')


@unittest.skipIf(os.environ.get('TRAVIS') == 'true', "Test not yet supported on travis")
@unittest.skip("Temporarily disabled")
class BuildTest(BaseBuildTest):

def test_0001_project(self):
Expand Down

0 comments on commit 7dea728

Please sign in to comment.