mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
Adjust runtimes tested in tox
This commit is contained in:
parent
502124ce60
commit
40f35989cc
2 changed files with 16 additions and 4 deletions
16
README.md
16
README.md
|
|
@ -17,10 +17,24 @@ You can test against multiple versions of Python with [tox](http://tox.testrun.o
|
|||
pip install tox
|
||||
tox
|
||||
|
||||
Versions currently tested in tox are:
|
||||
|
||||
* CPython 2.7 (also tested in Codeship)
|
||||
* CPython 3.4 (also tested in Codeship)
|
||||
* CPython 3.5
|
||||
* PyPy
|
||||
* PyPy3
|
||||
|
||||
To install all the relevant runtimes on Fedora 23:
|
||||
|
||||
sudo dnf install python python3 pypy pypy3
|
||||
sudo dnf copr enable -y mstuchli/Python3.5
|
||||
sudo dnf install python35-python3
|
||||
|
||||
Continuous integration
|
||||
----------------------
|
||||
|
||||
CI is set up in Codeship to run against PRs and commits.
|
||||
|
||||
[](https://codeship.com/projects/102388)
|
||||
[](https://codecov.io/bitbucket/ncoghlan/contextlib2?branch=default)
|
||||
[](https://codecov.io/bitbucket/ncoghlan/contextlib2?branch=default)
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -1,8 +1,6 @@
|
|||
[tox]
|
||||
envlist = py26, py27, pypy, py32, py33, py34, py35, pypy3
|
||||
envlist = py27, pypy, py34, py35, pypy3
|
||||
|
||||
[testenv]
|
||||
commands = {envpython} test_contextlib2.py
|
||||
|
||||
[testenv:py26]
|
||||
deps = unittest2
|
||||
|
|
|
|||
Loading…
Reference in a new issue