We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e19d2e commit 30fa71cCopy full SHA for 30fa71c
.travis.yml
@@ -44,7 +44,7 @@ matrix:
44
- language-pack-zh-hans
45
- dist: trusty
46
env:
47
- - JOB="2.7" TEST_ARGS="--skip-slow" LINT=true
+ - JOB="2.7" TEST_ARGS="--skip-slow" LINT=true CLIPBOARD=true
48
addons:
49
apt:
50
packages:
pandas/tests/io/test_clipboard.py
@@ -18,7 +18,7 @@
18
try:
19
DataFrame({'A': [1, 2]}).to_clipboard()
20
_DEPS_INSTALLED = 1
21
-except PyperclipException:
+except (PyperclipException, RuntimeError):
22
_DEPS_INSTALLED = 0
23
24
0 commit comments