Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start testing PyPy #357

Merged
merged 2 commits into from
Nov 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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