We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeaf666 commit 9503eddCopy full SHA for 9503edd
1 file changed
test/test_examples.py
@@ -1,5 +1,6 @@
1
# coding=utf-8
2
3
+from __future__ import print_function
4
import re
5
import traceback
6
import pytest
@@ -17,15 +18,15 @@
17
18
19
# environment variables
20
try:
- from dotenv import load_dotenv
21
+ from dotenv import load_dotenv # pylint: disable=C0413
22
except:
- print 'warning: dotenv module could not be imported'
23
+ print ('warning: dotenv module could not be imported')
24
25
26
dotenv_path = join(dirname(__file__), '../', '.env')
27
load_dotenv(dotenv_path)
28
- print 'warning: no .env file loaded'
29
+ print ('warning: no .env file loaded')
30
31
32
@pytest.mark.skipif(os.getenv('VCAP_SERVICES') is None,
0 commit comments