forked from mar10/wsgidav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
56 lines (50 loc) · 1.52 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
# sudo: false
language: python
matrix:
include:
- python: "3.11" # EOL 2027-10-24
env: TOXENV=check,py311
dist: bionic
- python: "3.10" # EOL 2026-10-04
env: TOXENV=py310
dist: bionic
- python: "3.9" # EOL 2025-10-05
env: TOXENV=py39
- python: "3.8" # EOL 2024-10-14
env: TOXENV=py38
- python: "3.7" # EOL 2023-06-27
env: TOXENV=py37
dist: xenial
before_install:
# Fix error: can't find Rust compiler
- pip install -U pip
# Fix "AttributeError: 'str' object has no attribute 'name'" on Py37
- pip install -U importlib_metadata
# - python: "3.6" # EOL 2021-12-21
# env: TOXENV=py36
# - python: "3.5" # EOL 2020-09-13
# env: TOXENV=py35
# - python: "3.4" # EOL 2019-03-18
# env: TOXENV=py34
- python: "3.12-dev"
env: TOXENV=py312
dist: bionic
allow_failures:
- python: "3.12-dev"
env: TOXENV=py312
dist: bionic
before_install:
# See issue #80: litmus fails to build on travis
# The branch 'travis-litmus' still has this enabled to investigate...
# - sudo apt-get install libneon27-dev
# - ./install_litmus.sh
services:
- redis-server
install:
- travis_retry pip install -U pip setuptools
- travis_retry pip install -U tox coveralls coverage
script:
- travis_retry tox
after_success:
- coverage combine
- coveralls