Skip to content

Commit

Permalink
Start testing PyPy (#357)
Browse files Browse the repository at this point in the history
* Start testing PyPy

* Update changelog
  • Loading branch information
dargueta authored and willmcgugan committed Nov 3, 2019
1 parent e777828 commit d245d72
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ python:
- "3.6"
- "3.7"
- "3.8-dev"
# TODO (dargueta): Enable these once we figure out FTP timing issues in PyPy tests
# - 'pypy'
# - 'pypy3.5-7.0'
- 'pypy'
- 'pypy3.5-7.0' # Need 7.0+ due to a bug in earlier versions that broke our tests.

matrix:
include:
Expand All @@ -22,6 +21,11 @@ matrix:
python: '3.7'
env: TOXENV=lint

# Temporary bandaid for https://github.com/PyFilesystem/pyfilesystem2/issues/342
allow_failures:
- python: pypy
- python: pypy3.5-7.0

before_install:
- pip install -U tox tox-travis
- pip --version
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.4.12] - (Unreleased)

### Changed

- Start testing on PyPy. Due to [#342](https://github.com/PyFilesystem/pyfilesystem2/issues/342)
we have to treat PyPy builds specially and allow them to fail, but at least we'll
be able to see if we break something aside from known issues with FTP tests.

## [2.4.11] - 2019-09-07

### Added
Expand Down

0 comments on commit d245d72

Please sign in to comment.