forked from bit-team/backintime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
67 lines (58 loc) · 1.92 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# TravisCI (https://travis-ci.org) configuration file
# https://docs.travis-ci.com/user/languages/python
language: python
os: linux
arch :
- amd64
- ppc64le
# ensures that we have UUID filesystem mounts for proper testing
dist: focal
addons:
# add localhost to known_hosts to prevent ssh unknown host prompt during unit tests
ssh_known_hosts: localhost
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
before_install:
# disable mongodb as we don't need it and it sometimes temporary fails
# https://github.com/travis-ci/travis-ci/issues/4937#issuecomment-149289729
- sudo rm -f /etc/apt/sources.list.d/mongodb.list
- sudo apt-get -qq update
# install screen, and util-linux (provides flock) for test_sshtools
- sudo apt-get install -y sshfs screen util-linux
jobs:
exclude:
- python: "3.9"
- python: "3.10"
- python: "3.11"
# Excluding this temporarily because of an Issue on Travis. Support contact established.
- arch: ppc64le
python: "3.12"
install:
- pip install pylint coveralls pyfakefs
# add ssh public / private key pair to ensure user can start ssh session to localhost for tests
- ssh-keygen -b 2048 -t rsa -f /home/travis/.ssh/id_rsa -N ""
- cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
# start ssh-agent so that we can add private keys
- eval `ssh-agent -s`
script:
# Is a virtual environment active? Yes: if both variables are not equal.
# - python -c "import sys;print(f'{sys.prefix=} {sys.base_prefix=} In virtualenv={sys.prefix != sys.base_prefix}')"
# - coverage debug sys
# compile all files - ensure that syntax is correct
- python -m compileall common common/test common/plugins qt qt/test qt/plugins
# run unit tests - ensure that functionality is correct
- cd common
- ./configure --python=python3
- make unittest-v
- cd ..
- cd qt
- ./configure --python=python3
- make
- pytest
after_success:
- coverage combine
- coveralls