Self explanatory question here. Is this even possible? Can't find any documentation regarding this anywhere.. And if not, how complicated is it to write a plugin? Thanks!
Asked
Active
Viewed 223 times
2 Answers
1
pytest is not currently in the test framework like JUnit is but since you have a command line you could run your tests manually or create a custom command from the commands tab on the left.
- click the "+" under "TEST"
- replace the "Command Line" entry that reads
echo "hello"
withpython ${current.project.relpath}
- click save
- With your python test file selected in the
Project Explorer
, click run on your new custom testshift+F10
.

J'e
- 3,014
- 4
- 31
- 55
0
Correct, there's no built in UI to run python tests. However, you may use command line approach.

bianchi
- 500
- 2
- 12