File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ install:
2020
2121lint :
2222 @echo " $( OK_COLOR) ==> Linting code ...$( NO_COLOR) "
23- @flake8 .
23+ @flake8 --exclude=tests .
2424
25- test : clean lint
25+ test : clean
2626 @echo " $( OK_COLOR) ==> Runnings tests ...$( NO_COLOR) "
2727 @py.test -s -v --capture sys --cov jsonpath_ng --cov-report term-missing
2828
Original file line number Diff line number Diff line change 1111-----
1212
1313This library provides a robust and significantly extended implementation
14- of JSONPath for Python. It is tested with Python 2.6, 2.7 & 3.x.
14+ of JSONPath for Python. It is tested with CPython 2.6, 2.7 & 3.x.
1515
1616This library differs from other JSONPath implementations in that it is a
1717full *language * implementation, meaning the JSONPath expressions are
Original file line number Diff line number Diff line change 2424from six import moves
2525import testscenarios
2626
27- from jsonpath_ng_ext import parser
27+ from jsonpath_ng . ext import parser
2828
2929
3030class Testjsonpath_ng_ext (testscenarios .WithScenarios ,
You can’t perform that action at this time.
0 commit comments