Skip to content

Commit 52d1d4b

Browse files
authored
Merge pull request #115 from TotallyNotRobots/gonzobot+3.8
Add python 3.8 to test matrix
2 parents 25579cd + 4f1d9d3 commit 52d1d4b

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

.travis.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: python
2-
dist: xenial
32
sudo: true
43
python:
5-
- "3.5"
6-
- "3.6"
7-
- "3.7"
8-
- "pypy3.5"
4+
- '3.5'
5+
- '3.6'
6+
- '3.7'
7+
- '3.8'
8+
- 'pypy3.5'
99

1010
branches:
1111
only:
@@ -17,31 +17,31 @@ cache: pip
1717

1818
jobs:
1919
include:
20-
- name: py3.5.3
21-
before_install:
22-
- sudo apt-get install -qy make build-essential libssl-dev zlib1g-dev libbz2-dev
23-
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev
24-
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
25-
- deactivate
26-
- unset PYENV_ROOT
27-
- curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
28-
- export PATH="$HOME/.pyenv/bin:$PATH"
29-
- pyenv update
30-
- pyenv install 3.5.3
31-
- eval "$(pyenv init -)"
32-
- pyenv shell 3.5.3
33-
- pyenv rehash
20+
- name: py3.5.3
21+
before_install:
22+
- sudo apt-get install -qy make build-essential libssl-dev zlib1g-dev libbz2-dev
23+
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev
24+
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
25+
- deactivate
26+
- unset PYENV_ROOT
27+
- curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
28+
- export PATH="$HOME/.pyenv/bin:$PATH"
29+
- pyenv update
30+
- pyenv install 3.5.3
31+
- eval "$(pyenv init -)"
32+
- pyenv shell 3.5.3
33+
- pyenv rehash
3434

3535
install:
36-
- "sudo apt-get update -q"
37-
- "sudo apt-get install -y python3-lxml libenchant-dev"
38-
- "pip install -Ur ./travis/requirements.txt"
36+
- sudo apt-get update -q
37+
- sudo apt-get install -y python3-lxml libenchant-dev
38+
- pip install -Ur ./travis/requirements.txt
3939

4040
script:
41-
- "pytest"
41+
- pytest
4242

4343
after_success:
44-
- codecov --required -e PYTHONASYNCIODEBUG
44+
- codecov --required -e PYTHONASYNCIODEBUG
4545

4646
env:
4747
- PYTHONPATH=.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Added
9+
- Add Python 3.8 to testing matrix
810
### Changed
911
- Refactor tests to remove dependency on mock library
1012
### Fixed

0 commit comments

Comments
 (0)