ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

Pytest 插件

作者: sloria 全部

Sublime Text 为 pytest 定制的插件

标签 插件

详细信息

  • 2019.12.11.16.57.35
  • github.com
  • github.com
  • 5年前
  • 47分钟前
  • 10年前

安装

  • 总计 3K
  • Win 1K
  • Mac 486
  • Linux 766
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0
Mac 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

README

源码
raw.githubusercontent.com

Sublime Text 为 pytest 的插件

Sublime Text 插件,用于与 pytest 进行测试。

安装

包控制(简单方法)

如果你还没有包控制,请先安装。

在命令面板(Mac 上为 Cmd-Shift+P)中输入 'Install',然后按回车键以显示包列表。搜索 'pytest snippets',然后按回车键进行安装。

…或者将文件复制到你的 Packages 目录中。

Linux

git clone git://github.com/sloria/sublime-pytest-snippets.git  ~/.config/sublime-text-3/Packages/python/sublime-pytest-snippets

Mac OS X

git clone git://github.com/sloria/sublime-pytest-snippets.git ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Python/sublime-pytest-snippets

Windows

git clone git://github.com/sloria/sublime-pytest-snippets.git %userprofile%\AppData\Roaming\Sublime Text 3\Packages\Python\sublime-pytest-snippets

示例

  • a== 展开为 assert first == second
  • a> 展开为 assert first > second
  • fixture 展开为
@pytest.fixture(scope='function')
def name:
    body

所有插件

断言

  • a==a!=
  • a~=a!~
  • a>, a>=, a<, 和 a<=
  • atrueafalse
  • aina!in
  • aisaisnot
  • 异常

固定项目

  • fixture
  • yieldfixture
  • 标记
  • 参数化

版权

许可协议为 WTFPL