We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a8d7e4 commit bac5ad6Copy full SHA for bac5ad6
.travis.yml
@@ -7,6 +7,11 @@ sudo: false
7
install:
8
- pip install Sphinx
9
- pip install -r requirements-travis.txt
10
+ - git clone https://github.com/avocado-framework/avocado.git avocado-libs
11
+ - cd avocado-libs
12
+ - python setup.py install
13
+ - cd ..
14
+ - rm -rf avocado-libs
15
16
script:
17
- make check
selftests/checkall
@@ -1,15 +1,16 @@
1
#!/bin/bash
2
+GR=0
3
run_rc() {
4
echo "Running '$1'"
5
$1
6
+ if [ $? != 0 ]; then
+ GR=1
+ fi
+ echo ""
}
run_rc 'inspekt lint'
-rc1=$?
-echo ""
run_rc 'inspekt indent'
-rc2=$?
run_rc 'inspekt style'
-rc3=$?
-exit $rc1 || $rc2 || $rc3
+run_rc 'selftests/run'
+exit ${GR}
0 commit comments