This repository was archived by the owner on Sep 28, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 11language : python
2+
23python :
4+ - 3.6
35 - 3.5
46 - 3.4
57 - 3.3
68 - 2.7
9+ - pypy
10+
711install :
812 - pip install -r requirements.txt
913 - pip install codecov
1014 - pip install flake8 pep8-naming flake8-quotes flake8-import-order pylint
15+
1116before_script :
1217 - flake8 --max-line-length=99 --import-order-style=google --application-import-names=cpplint_junit
1318 - pylint -E cpplint_junit.py test.py
19+
1420script :
1521 python -Werror -Wignore::DeprecationWarning -m coverage run test.py
22+
1623after_success :
1724 codecov
Original file line number Diff line number Diff line change 1212
1313from exitstatus import ExitStatus
1414
15- __version__ = '1.0.1 '
15+ __version__ = '1.1.0 '
1616
1717
1818class CpplintError (object ):
@@ -123,5 +123,6 @@ def main(): # pragma: no cover
123123
124124 return ExitStatus .success
125125
126+
126127if __name__ == '__main__' : # pragma: no cover
127128 sys .exit (main ())
Original file line number Diff line number Diff line change 3434 'Programming Language :: Python :: 3.3' ,
3535 'Programming Language :: Python :: 3.4' ,
3636 'Programming Language :: Python :: 3.5' ,
37+ 'Programming Language :: Python :: 3.6' ,
38+ 'Programming Language :: Python :: Implementation :: CPython' ,
39+ 'Programming Language :: Python :: Implementation :: PyPy' ,
3740 'Topic :: Software Development :: Libraries :: Python Modules' ,
3841 'Topic :: Software Development :: Quality Assurance' ,
3942 ],
You can’t perform that action at this time.
0 commit comments