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 1945f74 commit ed38911Copy full SHA for ed38911
.gitignore
@@ -1,7 +1,7 @@
1
*.pyc
2
*~
3
+.cache/
4
__pycache__/
-/.cache/
5
/MANIFEST
6
/build/
7
/dist/
Makefile
@@ -5,8 +5,8 @@ BUILDDIR = $(CURDIR)/build
build:
$(PYTHON) setup.py build
8
-test:
9
- $(PYTHON) -m pytest
+test: build
+ PYTHONPATH=$(BUILDDIR)/lib $(PYTHON) -m pytest tests
10
11
sdist: python2_6.patch doc-html
12
$(PYTHON) setup.py sdist
@@ -28,7 +28,7 @@ clean:
28
$(MAKE) -C doc clean
29
30
distclean: clean
31
- rm -rf .cache
+ rm -rf .cache tests/.cache
32
rm -f MANIFEST
33
rm -f *.pyc tests/*.pyc doc/examples/*.pyc
34
rm -rf __pycache__ tests/__pycache__ doc/examples/__pycache__
0 commit comments