#! /usr/bin/env python | |
import subprocess | |
from stat import * | |
language: bash | |
_rc = subprocess.call(["language:","bash"]) | |
script: bash tests.sh | |
_rc = subprocess.call(["script:","bash","tests.sh"]) | |
before_install: | |
_rc = subprocess.call(["before_install:"]) | |
- sudo apt-get install bc | |
_rc = subprocess.call([-,"sudo","apt-get","install","bc"]) | |
ÿ |