Skip to content

Commit

Permalink
Disable java tests on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Bastida committed Jun 1, 2016
1 parent b5df3f4 commit 7fd8d5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions tests/lambdajava/tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import unittest

import boto3

Expand All @@ -7,6 +8,7 @@
from gordon import utils


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

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


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

def test_0001_project(self):
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ passenv=AWS_ACCESS_KEY_ID AWS_DEFAULT_REGION AWS_SECRET_ACCESS_KEY AWS_SECURITY_

[testenv]
deps = -rtest_requirements.txt
commands = nosetests --cover-package=gordon --nocapture --with-coverage -a '!integration'
commands = nosetests --cover-package=gordon --with-coverage -a '!integration'

[testenv:integration]
basepython = python2.7
Expand Down

0 comments on commit 7fd8d5e

Please sign in to comment.