We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can not run debugger in Pycharm with default configuration. test runner just ignores breakpoints.
Django==1.10.6 coverage==4.3.4 nose==1.3.7 django-nose==1.4.4
I'm using following configuration
NOSE_ARGS = [ '--with-coverage', '--cover-package=foo,bar', '--detailed-errors', '-s' ]
Added -s option by following answer on this question on stackoverflow
-s
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
It seems pycharm has some kind if conflict with --with-coverage option, commenting that line fixed the problem for me
--with-coverage
Sorry, something went wrong.
Ran into this, adding my solution:
import sys RUNNING_WITH_DEBUGGER = True if sys.gettrace() is not None else False NOSE_ARGS = [ '--with-xunit', '--xunit-file=nosetests.xml', ] if not RUNNING_WITH_DEBUGGER: NOSE_ARGS.extend([ '--cover-erase', '--with-xcoverage', '--xcoverage-file=coverage.xml', '--cover-package=testDjangoApp', ])
No branches or pull requests
I can not run debugger in Pycharm with default configuration.
test runner just ignores breakpoints.
I'm using following configuration
Added
-s
option by following answer on this question on stackoverflowWhat am I doing wrong?
The text was updated successfully, but these errors were encountered: