Skip to content

Commit 4355de8

Browse files
committed
fix(tests): pass unit tests
1 parent 6cb76e2 commit 4355de8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ install:
2020

2121
lint:
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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ About
1111
-----
1212

1313
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.
1515

1616
This library differs from other JSONPath implementations in that it is a
1717
full *language* implementation, meaning the JSONPath expressions are

tests/test_jsonpath_rw_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from six import moves
2525
import testscenarios
2626

27-
from jsonpath_ng_ext import parser
27+
from jsonpath_ng.ext import parser
2828

2929

3030
class Testjsonpath_ng_ext(testscenarios.WithScenarios,

0 commit comments

Comments
 (0)