Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Ilya Kazakevich
Total activity
204
Last activity
February 24, 2021 12:50
Member since
April 25, 2011 19:04
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
81
Activity overview
Posts (1)
Comments (122)
Sort by recent activity
Recent activity
Votes
Created
May 15, 2017 17:09
Official comment
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...
Community
PyCharm
Cannot run unittest.TestSuite() anymore - PyCharm version 2017.1.2
0 votes
Created
May 12, 2017 15:48
Official comment
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.
Community
PyCharm
Make default for run options in 2017.1
0 votes
Created
May 12, 2017 13:54
Official comment
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...
Community
PyCharm
Jinja2 JSON templates not being recognised by templates
0 votes
Created
May 11, 2017 19:31
Hello. Do you use ``.json`` extension?
Community
PyCharm
Jinja2 JSON templates not being recognised by templates
0 votes
Created
May 11, 2017 19:22
Official comment
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...
Community
PyCharm
when having tox.ini use Python from one of the environments for auto complete
0 votes
Created
May 05, 2017 21:22
Official comment
Hello. there is an issue and it is already fixed in 2017.1.3 and 2017.2 : https://youtrack.jetbrains.com/issue/PY-23872
Community
PyCharm
Nosetests default configuration is not respected after upgrading to PyCharm 2017.1.2
0 votes
Created
April 21, 2017 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...
Community
PyCharm
unittest specify order
0 votes
Created
April 21, 2017 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...
Community
PyCharm
unittest specify order
0 votes
Created
April 21, 2017 20:08
It does not actually affects test order, but sorts results.
Community
PyCharm
unittest specify order
0 votes
Created
April 21, 2017 19:52
Official comment
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.
Community
PyCharm
unittest specify order
0 votes
«
First
‹
Previous
Next
›
Last
»