We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f1283e commit 3e0e3b1Copy full SHA for 3e0e3b1
tests/test_bashcompletion.py
@@ -22,11 +22,10 @@
22
skip_reason1 = True
23
skip_reason = "argcomplete isn't installed\n"
24
25
+skip_reason2 = "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true"
26
+if skip_reason2:
27
+ skip_reason += 'These tests cannot run on TRAVIS\n'
28
-# skip_reason2 = "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true"
-# if skip_reason2:
-# skip_reason += 'These tests cannot run on TRAVIS\n'
29
-skip_reason2 = False
30
skip_reason3 = sys.platform.startswith('win')
31
if skip_reason3:
32
skip_reason = 'argcomplete doesn\'t support Windows'
0 commit comments