Skip to content

Commit

Permalink
Ensure CI always validate builtin test cases
Browse files Browse the repository at this point in the history
Install necessary Python packages to satisfy the dependency of builtin
test cases including pip3.

TODO: it takes much longer time to set up Python packages rather than
compiling and validating dcurl itself.
  • Loading branch information
jserv committed Aug 2, 2018
1 parent f94b36f commit 03cef50
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@ compiler:
- clang
- gcc

before_install:
- sudo apt-get install -y build-essential
- sudo apt-get install -y clang
- sudo apt-get install -y python3-pip
- sudo apt-get install -y python3-cffi
- sudo pip3 install --upgrade pip setuptools
- sudo pip3 install pyota

script:
- make
- make check

0 comments on commit 03cef50

Please sign in to comment.