stcgal/.travis.yml
Grigori Goronzy 217e5fb17e
CI: try to fix and simplify apt setup
Run apt update to update the package cache, as this seems to be needed by
Travis now. Also reduce the package set - we don't build any deb or rpm
packages anymore. This should hopefully fix the CI build.
2018-11-09 01:14:41 +01:00

19 lines
304 B
YAML

sudo: required
dist: trusty
language: python
cache:
- pip
python:
- "3.4"
- "3.5"
- "3.6"
- "pypy3"
before_install:
- sudo apt update
- sudo apt install python3-setuptools python3-serial python3-yaml
install:
- pip install pyusb
script:
- python setup.py build
- python setup.py test