Skip to content

Commit 3fe9af7

Browse files
fix travis
1 parent 0771f49 commit 3fe9af7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
dotenv_path = join(dirname(__file__), '../', '.env')
2121
load_dotenv(dotenv_path)
2222

23-
@pytest.mark.skipif(os.getenv('VCAP_SERVICES') is None and sys.version_info < (3,3), reason='requires VCAP_SERVICES and Python != 3.3')
23+
@pytest.mark.skipif(os.getenv('VCAP_SERVICES') is None or sys.version_info == (3,2), reason='requires VCAP_SERVICES and Python != 3.2')
2424
def test_examples():
2525
examples = glob(examples_path)
2626
for example in examples:

0 commit comments

Comments
 (0)