We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19dcf4 commit eba4fc9Copy full SHA for eba4fc9
.travis.yml
@@ -1,9 +1,8 @@
1
language: python
2
-sudo: false
+dist: trusty
3
+sudo: required
4
python:
5
- "2.7"
-install:
6
- - pip install coverage coveralls
+install: true
7
script:
8
- - coverage run setup.py test # tests still to be implemented
9
- - coveralls || true
+ - $TRAVIS_BUILD_DIR/scripts/travis.sh
scripts/travis.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+set -e
+sudo apt-get update -y
+sudo apt-get install -y debhelper devscripts dh-apparmor dh-python python python-pip python-setuptools python-sphinx
+pip install -r requirements.txt
10
+pip install coverage coveralls
11
12
+coverage run setup.py test # tests still to be implemented
13
+coveralls
14
15
+./scripts/build.sh -d trusty -t $TRAVIS_COMMIT -n
0 commit comments