2018-04-11 17:20:24 +00:00
|
|
|
language: generic
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -qq python3.4 python3-pip python3.4-venv
|
|
|
|
install:
|
|
|
|
- python3 -m venv env
|
2018-04-14 04:25:03 +00:00
|
|
|
# travis had an issue...
|
2018-04-11 17:20:24 +00:00
|
|
|
- ./env/bin/pip install -U setuptools
|
2018-04-14 04:25:03 +00:00
|
|
|
- make test-env
|
2018-04-11 17:20:24 +00:00
|
|
|
script:
|
|
|
|
- make test
|