主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Ilya Kazakevich
活动总数
204
最后的活动
2021年02月24日 12:50
成员加入日期
2011年04月25日 19:04
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
81
活动概览
帖子(1)
评论(122)
按最近的活动排序
最近的活动
投票数
创建于
2017年05月15日 17:09
正式评论
Hello. This scenario is not fully supported yet (https://youtrack.jetbrains.com/issue/PY-24274) but you can use workaround. Create run configuration, set target to "custom" and set qualified name o...
社区
PyCharm
Cannot run unittest.TestSuite() anymore - PyCharm version 2017.1.2
0 票
创建于
2017年05月12日 15:48
正式评论
Hello Anders, This issue been fixed in 2017.1.3 https://blog.jetbrains.com/pycharm/2017/05/pycharm-2017-1-3-rc-2-now-available-for-download/ Please check.
社区
PyCharm
Make default for run options in 2017.1
0 票
创建于
2017年05月12日 13:54
正式评论
Hello Jim. In "File | Settings | Editor | File Types" remove ".json" from JSON file type and add it to Jinja2 file type. It will disable JSON highlighting by enable Jinja2. There is no way to sup...
社区
PyCharm
Jinja2 JSON templates not being recognised by templates
0 票
创建于
2017年05月11日 19:31
Hello. Do you use ``.json`` extension?
社区
PyCharm
Jinja2 JSON templates not being recognised by templates
0 票
创建于
2017年05月11日 19:22
正式评论
Hello. Tox is used to test code, not to run scripts in most cases. PyCharm supports running tox with run configuration and tox installs all dependencies itself. If you want PyCharm to create pro...
社区
PyCharm
when having tox.ini use Python from one of the environments for auto complete
0 票
创建于
2017年05月05日 21:22
正式评论
Hello. there is an issue and it is already fixed in 2017.1.3 and 2017.2 : https://youtrack.jetbrains.com/issue/PY-23872
社区
PyCharm
Nosetests default configuration is not respected after upgrading to PyCharm 2017.1.2
0 票
创建于
2017年04月21日 22:08
You could probably patch ``loadTestsFrom*`` or ``dir()`` your test case to know real order, but these solutions do not look elegant. I'd suggest to ask this question on StackOverflow since Jetbrain...
社区
PyCharm
unittest specify order
0 票
创建于
2017年04月21日 20:57
Try to monkeypatch it on the top level of your file, just before test class. Following code runs B before A, for example TestLoader.sortTestMethodsUsing = lambda self, a, b: (a < b) - (a > b)clas...
社区
PyCharm
unittest specify order
0 票
创建于
2017年04月21日 20:08
It does not actually affects test order, but sorts results.
社区
PyCharm
unittest specify order
0 票
创建于
2017年04月21日 19:52
正式评论
Hi. You can monkeypatch this function. Try TestLoader.sortTestMethodsUsing = lambda self, a, b: cmp(a, b) * -1 Be sure to disable "sort alphabetically" option in PyCharm.
社区
PyCharm
unittest specify order
0 票
«
第一页
‹
上一页
下一页
›
最后
»