dvershinin / lastversion

Missing module/function docstring PY-D0003
Documentation
Minor
3 occurrences in this check
Docstring missing for test_only_arg_negated
475    assert v == version.parse('9.16.0')
476
477
478def test_only_arg_negated():479    repo = 'https://github.com/lastversion-test-repos/autoscaler/tags'
480    v = latest(repo, only='!chart')
481    assert v == version.parse('1.23.0')
Docstring missing for test_only_arg_again
469    assert v == version.parse('3.10.0')
470
471
472def test_only_arg_again():473    repo = 'https://github.com/lastversion-test-repos/autoscaler/tags'
474    v = latest(repo, only='chart')
475    assert v == version.parse('9.16.0')
Docstring missing for test_dict_no_license
481    assert v == version.parse('1.23.0')
482
483
484def test_dict_no_license():485    repo = 'https://github.com/lastversion-test-repos/nginx_ajp_module'
486    release = latest(repo, output_format='dict')
487    assert release['version'] == version.parse('0.3.2')