We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ad9e1 commit d53b676Copy full SHA for d53b676
Makefile
@@ -1,7 +1,3 @@
1
-
2
-PYCACHE_DIR := $(shell find . -name '__pycache__' -type d)
3
-PYTEST_DIR := $(shell find . -name '.pytest_cache' -type d)
4
5
.PHONY: test install
6
7
install:
@@ -13,8 +9,13 @@ uninstall:
13
9
test:
14
10
pytest test -vv -s
15
11
12
+
+PYCACHE_DIR := $(shell find . -name '__pycache__' -type d)
+PYTEST_DIR := $(shell find . -name '.pytest_cache' -type d)
+EGG_DIR := $(shell find . -name '*.egg-info' -type d)
16
17
clean:
- rm -rf $(PYCACHE_DIR) ${PYTEST_DIR} dist jsonpath.egg-info
18
+ rm -rf $(PYCACHE_DIR) ${PYTEST_DIR} ${EGG_DIR} dist
19
20
package: clean
21
python3 setup.py sdist bdist_wheel
0 commit comments