Files
pytest_gui_status/.travis.yml
T
bendtherules c494ede016 Move pyside to travis using apt and added to external_dependencies.txt
As it needs to compile and install itself if done pip install, that errors and takes a lot of time in travis
2016-01-03 11:50:00 +05:30

32 lines
507 B
YAML

language: python
# cache: pip
addons:
apt:
packages:
- redis-server
- python-pyside
python:
# major versions, test first
- "2.7"
- "3.5-dev"
# other versions
- "2.6"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
# not included, for incompatibility
# - "2.5" # tarvis errs
# - "3.2" # humanfriendly cant install
# - "pypy3" # psutil errs
install:
- "pip install --upgrade -r requirements.txt"
- "pip install -e ."
# command to run tests
script: py.test