在 Travis 上访问剪贴板-CI

Accessing clipboard on Travis-CI

我正在尝试 运行 在我的 application 上进行(集成?)测试,以验证它确实使用 pyperclip.[=33 将预期的字符串复制到剪贴板=]

这部分正在我的开发机器上运行 (Windows 10);但在 travis-ci 上失败,我在 travis 作业日志中得到以下内容。

self = <pyperclip.init_no_clipboard.<locals>.ClipboardUnavailable object at 0x7ff0cd743588>
args = ('7 809823 102890 string 291',), kwargs = {}
    def __call__(self, *args, **kwargs):
>       raise PyperclipException(EXCEPT_MSG)
E       pyperclip.PyperclipException: 
E           Pyperclip could not find a copy/paste mechanism for your system.
E           For more information, please visit https://pyperclip.readthedocs.io/en/latest/introduction.html#not-implemented-error
../../../virtualenv/python3.7.1/lib/python3.7/site-packages/pyperclip/__init__.py:301: PyperclipException

根据 pyperclip documentation,当没有 copy/paste 机制时,这发生在 Linux 上。解决方案是安装以下之一(引用 pyperclip 文档):

所以在我的 .travis.yml 文件中,我有

before_install:
  - sudo apt-get install xclip

我也试过 xsel,结果一样。

由于travis上的系统是Ubuntu16.04.6,我尝试在before_install键上加上sudo apt-get install python3-pyperclip,结果一样。

我无法通过将 gtkPyQt4 添加到 .travis.yml 中的 install 键来安装它们。

install:
  - pip install -r requirements_dev.txt
  - pip install PyQt4
  # or
  - pip install gtk

因为这些都会导致以下错误:

 Could not find a version that satisfies the requirement gtk (from versions: )
No matching distribution found for gtk
The command "pip install gtk" failed and exited with 1 during .

至此,我的 before_install 看起来像这样:

  - sudo apt-get install xclip
  - sudo apt-get install xsel
  - sudo apt-get install python3-pyperclip
  - sudo apt-get install gtk2.0

这似乎有点矫枉过正(但仍然不起作用);但我目前不知道如何通过该测试。任何指点都将得到极大的赞赏ci。

谢谢

xclip 要求 X 服务器 运行ning,而 Travis 机器 运行 处于无头模式。您需要 运行 虚拟帧缓冲区中的命令;除了 xclip 之外还安装 xvfb 并使用 xvfb-run pytest 而不是 pytest。完整配置示例:

language: python
addons:
  apt:
    packages:
    - xclip
    - xvfb
python:
  - "3.7"

# setup installation
install:
  - pip install -r requirements_dev.txt

script: xvfb-run pytest

这是一个例子build on Travis。请注意,我使用 addons 来声明应使用 APT 安装的依赖项;您将它们显式安装在 before_install 部分的解决方案也完全有效,只是个人喜好问题。