You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2017/05/02 05:12:18 UTC

[08/12] libcloud git commit: workaround for pypy3

workaround for pypy3


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/57f9bf86
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/57f9bf86
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/57f9bf86

Branch: refs/heads/trunk
Commit: 57f9bf861afe3b2f626cf1ae7ddc8131adda0ba0
Parents: b4ce936
Author: Anthony Shaw <an...@apache.org>
Authored: Mon Apr 24 14:35:22 2017 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Mon Apr 24 14:35:22 2017 +1000

----------------------------------------------------------------------
 tox.ini | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/57f9bf86/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index e0cc15a..bde486e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -23,6 +23,12 @@ basepython =
     py3.6: python3.6
 whitelist_externals = cp
 
+[testenv:pypy3]
+commands = cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
+           python -m unittest discover libcloud/test
+basepython =
+    pypypy3: pypy3
+
 # Explicitly spell out all environments to test with builtin xml and lxml,
 # as it seems I can't use the following:
 # [testenv:py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5,3.6}-lxml]