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:
20
20
21
21
lint :
22
22
@echo " $( OK_COLOR) ==> Linting code ...$( NO_COLOR) "
23
- @flake8 .
23
+ @flake8 --exclude=tests .
24
24
25
- test : clean lint
25
+ test : clean
26
26
@echo " $( OK_COLOR) ==> Runnings tests ...$( NO_COLOR) "
27
27
@py.test -s -v --capture sys --cov jsonpath_ng --cov-report term-missing
28
28
Original file line number Diff line number Diff line change 11
11
-----
12
12
13
13
This 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.
15
15
16
16
This library differs from other JSONPath implementations in that it is a
17
17
full *language * implementation, meaning the JSONPath expressions are
Original file line number Diff line number Diff line change 24
24
from six import moves
25
25
import testscenarios
26
26
27
- from jsonpath_ng_ext import parser
27
+ from jsonpath_ng . ext import parser
28
28
29
29
30
30
class Testjsonpath_ng_ext (testscenarios .WithScenarios ,
You can’t perform that action at this time.
0 commit comments