-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
script to make it easier to run all tests
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
echo "\nunit tests" | ||
python unit_tests.py > /dev/null | ||
echo "\nclassical paradigm tests" | ||
python data_test.py | ||
echo "\nregression tests" | ||
python regression_tests.py | ||
echo "\ndoctests" | ||
python -m doctest examples.rst | ||
echo "\nmorphgnt tests" | ||
python morphgnt_generate.py 1 2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 23 24 25 26 27 | ||
echo "\nhomer paradigm tests" | ||
python homer_generate_paradigms.py |