mirror of
https://github.com/borgbase/vorta
synced 2024-12-23 00:07:58 +00:00
Merge branch 'master' of https://github.com/borgbase/vorta
This commit is contained in:
commit
9ab96b9df9
1 changed files with 18 additions and 17 deletions
35
.travis.yml
35
.travis.yml
|
@ -1,7 +1,18 @@
|
||||||
language: generic
|
language: python
|
||||||
|
python:
|
||||||
|
- '3.6'
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- xvfb
|
||||||
|
- libssl-dev
|
||||||
|
- openssl
|
||||||
|
- libacl1-dev
|
||||||
|
- libacl1
|
||||||
|
- build-essential
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
- pip
|
- pip
|
||||||
|
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
|
@ -9,25 +20,13 @@ dist: trusty
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
# used by ci-helpers
|
|
||||||
- SETUP_XVFB=true
|
- SETUP_XVFB=true
|
||||||
- PIP_DEPENDENCIES='hacking pytest pytest-qt'
|
|
||||||
|
|
||||||
- MPLBACKEND=TkAgg # for osx
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: osx
|
|
||||||
env:
|
|
||||||
- PYTEST_QT_API=pyqt5
|
|
||||||
- PYQT_PACKAGE='pyqt=5'
|
|
||||||
- PYTHON_VERSION=3.6
|
|
||||||
- RUN_PYINSTALLER=true
|
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: trusty
|
||||||
env:
|
env:
|
||||||
- PYTEST_QT_API=pyqt5
|
|
||||||
- PYQT_PACKAGE='pyqt=5'
|
|
||||||
- PYTHON_VERSION=3.6
|
|
||||||
- RUN_PYINSTALLER=true
|
- RUN_PYINSTALLER=true
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
@ -36,19 +35,21 @@ install:
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
# Xvfb / window manager
|
# Xvfb / window manager
|
||||||
sudo apt-get install -y xvfb herbstluftwm
|
sudo apt-get install -y xvfb herbstluftwm
|
||||||
|
export DISPLAY=:99.0
|
||||||
|
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX +render -noreset
|
||||||
|
sleep 3
|
||||||
elif [ $TRAVIS_OS_NAME = "osx" ]; then
|
elif [ $TRAVIS_OS_NAME = "osx" ]; then
|
||||||
brew cask install xquartz
|
brew cask install xquartz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- python3 -m venv venv
|
|
||||||
- source activate venv
|
|
||||||
- pip install .
|
- pip install .
|
||||||
|
- pip install borgbackup
|
||||||
- pip install -r requirements-dev.txt
|
- pip install -r requirements-dev.txt
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- if [ $TRAVIS_OS_NAME = "linux" ]; then (herbstluftwm )& fi
|
- if [ $TRAVIS_OS_NAME = "linux" ]; then (herbstluftwm )& fi
|
||||||
- if [ $TRAVIS_OS_NAME = "osx" ]; then (sudo Xvfb :99 -ac -screen 0 1024x768x8 )& fi
|
- if [ $TRAVIS_OS_NAME = "osx" ]; then (sudo Xvfb :99 -ac -screen 0 1024x768x8 )& fi
|
||||||
- sleep 1
|
- sleep 3
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- pytest
|
- pytest
|
||||||
|
|
Loading…
Reference in a new issue