Commit ed878620 authored by WillBrennan's avatar WillBrennan

updated travis

parent a54277f6
language: python language: python
dist: trusty
sudo: required
before_script:
- export PATH=/usr/bin:$PATH
- sudo apt-get update -qq
- sudo apt-get install -yq python-dev python-numpy python-opencv
- sudo ln /dev/null /dev/raw1394
- python -c "import cv2; print cv2.__version__"
matrix: matrix:
include: include:
- python: "2.6"
- python: "2.7" - python: "2.7"
- python: "3.2"
- python: "3.3" before_install:
- python: "3.4" # update aptitude
- python: "3.5" - sudo apt-get update
- python: "3.5-dev" - sudo apt-get install -y python-opencv
- python: "3.6"
- python: "3.6-dev" # help python importing cv and/or cv2
- python: "3.7" - export PYTHONPATH=$PYTHONPATH:/usr/lib/pymodules/python$TRAVIS_PYTHON_VERSION
- python: "nightly"
allow_failures: # verify all requirements were met
- python: "3.2" - INSTALLDIR=$(python -c "import os; import numpy; import cv; import cv2; print(os.path.dirname(cv2.__file__))")
- python: "3.5-dev"
- python: "3.6"
- python: "3.6-dev"
- python: "3.7"
- python: "nightly"
install: install:
- make install - make install
script: script:
- uname -a
- pytest --version
- python -V
- which python
- python -m pytest --version
- make test - make test
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment