1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Convert test to prove instead of runprove.

runprove/Test::Run is an unnecessary dep.
This commit is contained in:
Shlomi Fish 2016-02-13 20:25:04 +02:00
parent 60257ce016
commit 69e1dd75bc

View file

@ -59,7 +59,14 @@ mo:
cp -f locale/pl/LC_MESSAGES/pysol.mo locale/pl_PL/LC_MESSAGES/pysol.mo
cp -f locale/it/LC_MESSAGES/pysol.mo locale/it_IT/LC_MESSAGES/pysol.mo
test:
pretest:
@rm -f tests/individually-importing/*.py # To avoid stray files
python scripts/gen_individual_importing_tests.py
runprove tests/style/*.t tests/board_gen/*.py tests/individually-importing/*.py
TEST_FILES = tests/style/*.t tests/board_gen/*.py tests/individually-importing/*.py
test: pretest
prove $(TEST_FILES)
runtest: pretest
runprove $(TEST_FILES)