File: tox-py3.patch

package info (click to toggle)
python-tblib 0.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 224 kB
  • ctags: 55
  • sloc: python: 224; makefile: 35
file content (37 lines) | stat: -rw-r--r-- 793 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
From ba6da74544fdd4f6f4cfba7cafe0164932075cb8 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Wed, 26 Feb 2014 15:41:24 +0000
Subject: Add a "py3" tox test environment for /usr/bin/python3.

Author: Colin Watson <cjwatson@debian.org>
Forwarded: https://github.com/ionelmc/python-tblib/pull/2
Last-Update: 2014-03-04

Patch-Name: tox-py3.patch
---
 tox.ini | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tox.ini b/tox.ini
index f1de1e1..080bc13 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,6 +2,7 @@
 envlist =
     py,
     py2.7,
+    py3,
     py3.2,
     py3.3,
     pypy
@@ -28,6 +29,10 @@ deps =
 basepython = python2.7
 deps =
     {[base]deps}
+[testenv:py3]
+basepython = python3
+deps =
+    {[base]deps}
 [testenv:py3.2]
 basepython = python3.2
 deps =