Skip to content

Commit 14d1721

Browse files
committed
Add a script to run all tests/checks
For now it's just the tests, but I will add more later.
1 parent 85a5b46 commit 14d1721

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ before_install:
2121
python3.4
2222
2323
script:
24-
- ./tests/run.py
24+
- ./run-checks

run-checks

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#! /bin/bash
2+
3+
# Fail if any test fails.
4+
set -e
5+
6+
echo "== RUNNING TESTS =="
7+
./tests/run.py
8+
echo

0 commit comments

Comments
 (0)