Skip to content

Commit e65f4a5

Browse files
committed
Adds PyPy to tests
1 parent 87f2477 commit e65f4a5

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

.travis.yml

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
11
language: python
22

3-
python:
4-
- "2.7"
5-
- "3.2"
6-
- "3.3"
7-
- "3.4"
8-
- "3.5"
9-
10-
env:
11-
- PENDULUM_EXTENSIONS=1
12-
- PENDULUM_EXTENSIONS=0
3+
matrix:
4+
include:
5+
- python: 2.7
6+
env: PENDULUM_EXTENSIONS=1
7+
- python: 2.7
8+
env: PENDULUM_EXTENSIONS=0
9+
- python: 3.2
10+
env: PENDULUM_EXTENSIONS=1
11+
- python: 3.2
12+
env: PENDULUM_EXTENSIONS=0
13+
- python: 3.3
14+
env: PENDULUM_EXTENSIONS=1
15+
- python: 3.3
16+
env: PENDULUM_EXTENSIONS=0
17+
- python: 3.4
18+
env: PENDULUM_EXTENSIONS=1
19+
- python: 3.4
20+
env: PENDULUM_EXTENSIONS=0
21+
- python: 3.5
22+
env: PENDULUM_EXTENSIONS=1
23+
- python: 3.5
24+
env: PENDULUM_EXTENSIONS=0
25+
- python: pypy
1326

1427
before_install:
1528
- pip install codecov

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pendulum
77

88
Python datetimes made easy.
99

10-
Supports Python **2.7+** and **3.2+**.
10+
Supports Python **2.7+**, **3.2+** and **PyPy**.
1111

1212

1313
.. code-block:: python

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,35}-{without,with}-extensions
2+
envlist = py{27,35}-{without,with}-extensions, pypy
33

44
[testenv]
55
deps = -rtests-requirements.txt

0 commit comments

Comments
 (0)