Skip to content

Commit c81e3e7

Browse files
authored
Merge pull request #4 from Code0x58/update-travis
Add Windows and Mac to Travis
2 parents eaa5205 + d535c74 commit c81e3e7

File tree

2 files changed

+26
-12
lines changed

2 files changed

+26
-12
lines changed

.travis.yml

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
language: python
2-
python:
3-
- "2.7"
4-
- "3.3"
5-
- "3.4"
6-
- "3.5"
7-
- "3.6"
8-
- "3.7-dev"
9-
- "pypy"
10-
- "pypy3"
11-
install:
12-
- pip install .
13-
script: py.test
2+
3+
jobs:
4+
include:
5+
- python: 3.8
6+
- python: 3.7
7+
- python: 3.6
8+
- python: 3.5
9+
- python: 3.4
10+
- python: 2.7
11+
- python: pypy3
12+
- python: pypy
13+
- name: "Python: 3.7"
14+
os: osx
15+
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
16+
language: shell # 'language: python' is an error on Travis CI macOS
17+
- name: "Python: 3.8"
18+
os: windows # Windows 10.0.17134 N/A Build 17134
19+
language: shell # 'language: python' is an error on Travis CI Windows
20+
before_install:
21+
- choco install python --version 3.8.2
22+
- python -m pip install --upgrade pip
23+
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
24+
25+
install: python -m pip install . pytest
26+
script: python -m pytest

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
Programming Language :: Python :: 3.5
3232
Programming Language :: Python :: 3.6
3333
Programming Language :: Python :: 3.7
34+
Programming Language :: Python :: 3.8
3435
Programming Language :: Python :: Implementation :: CPython
3536
Programming Language :: Python :: Implementation :: PyPy
3637
Topic :: Database

0 commit comments

Comments
 (0)