We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6767ce commit 948e8b4Copy full SHA for 948e8b4
2 files changed
CONTRIBUTING.rst
@@ -54,9 +54,12 @@ You can setup your local environment for developing patches for cpplint like thi
54
55
.. code-block:: bash
56
57
+ # run a single test
58
+ pytest cpplint_unittest.py -k testExclude
59
+ # run all tests
60
+ ./setup.py test
61
./setup.py lint
62
./setup.py style
- ./setup.py test
63
./setup.py ci # all the above
64
./tox # all of the above in all python environments
65
setup.cfg
@@ -8,3 +8,5 @@ python_files = *test.py
8
testpaths = .
9
# running with tox reports only 75%
10
addopts = --cov-fail-under=75 --cov=cpplint
11
+filterwarnings =
12
+ ignore:.*:DeprecationWarning
0 commit comments