We have nasal tests that run on the teamcity build agent. Some tests are slow and therefore do not run on every pull request. The problem is that they are not reported as missed. They simply do not appear in the teamcity report.
Slow tests marked
@attr('nightly')
Normal tests run as follows:
nosetests path/to/tests --nocapture --nologcapture -v -a '!nightly'
I can list the nightly tests without running them like this:
nosetests path/to/tests --nocapture --nologcapture -v -a 'nightly' --collect-only
But this reports that they are being successfully implemented.
How can I get tags to report teamcity as missing?
--- Update ---
, , , http://nose.readthedocs.io/en/latest/plugins/collect.html?highlight=addSuccess. addSkipped, , , addError http://nose.readthedocs.io/en/latest/plugins/skip.html.
? , ...