We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0771f49 commit 3fe9af7Copy full SHA for 3fe9af7
1 file changed
test/test_examples.py
@@ -20,7 +20,7 @@
20
dotenv_path = join(dirname(__file__), '../', '.env')
21
load_dotenv(dotenv_path)
22
23
-@pytest.mark.skipif(os.getenv('VCAP_SERVICES') is None and sys.version_info < (3,3), reason='requires VCAP_SERVICES and Python != 3.3')
+@pytest.mark.skipif(os.getenv('VCAP_SERVICES') is None or sys.version_info == (3,2), reason='requires VCAP_SERVICES and Python != 3.2')
24
def test_examples():
25
examples = glob(examples_path)
26
for example in examples:
0 commit comments