blob: 68f4b1ee3235b815e2f39d448ed0c21df4b53ce5 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.PHONY: rtest build test
build:
python setup.py build_ext --inplace
test:
python setup.py test -v
rtest:
env PYTHONPATH=. \
~/dev/venvs/36-debug/bin/python -m test.regrtest -R3:3 --testdir tests/
|