Skip to content

Commit a12e211

Browse files
author
Willem Jan Faber
authored
Update Makefile
Fix Travis python3 tests
1 parent f087d47 commit a12e211

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Makefile

+6-7
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,24 @@ doc:
66
test: install testENV testOAI testSRU testALTOtoTXT
77

88
testENV:
9-
python setup.py install
9+
python3 setup.py install
1010

1111
testOAI:
12-
python2.7 ./test/oai_test.py
12+
python3 ./test/oai_test.py
1313

1414
testSRU:
15-
python2.7 ./test/sru_test.py
15+
python3 ./test/sru_test.py
1616

1717
testALTOtoTXT:
18-
python ./test/alto_to_text_test.py
18+
python3 ./test/alto_to_text_test.py
1919

2020
clean:
2121
rm -rf build
2222
rm -rf dist
2323
rm -rf kb.egg-info
2424
find . -name \*.pyc -exec rm '{}' ';'
25-
find . -name "__pycache__" -exec rmdir {} \;
26-
rm -rf env/local/lib/python2.7/site-packages/kb-*
25+
find . -name "__pycache__" -exec rmdir {} \;
2726
rm README.html
2827

2928
install:
30-
python setup.py install
29+
python3 setup.py install

0 commit comments

Comments
 (0)