Sir the output when i used :
~/ryu$ sudo python ./setup.py install[sudo] password : running install[pbr] 
Writing ChangeLog[pbr] Generating ChangeLog[pbr] ChangeLog complete (0.3s)[pbr] 
Generating AUTHORS[pbr] AUTHORS complete (0.2s)running buildrunning 
build_pyrunning egg_infowriting requirements to 
ryu.egg-info/requires.txtwriting ryu.egg-info/PKG-INFOwriting top-level names 
to ryu.egg-info/top_level.txtwriting dependency_links to 
ryu.egg-info/dependency_links.txtwriting entry points to 
ryu.egg-info/entry_points.txtwriting pbr to ryu.egg-info/pbr.json[pbr] 
Processing SOURCES.txt[pbr] In git context, generating filelist from 
gitwarning: no previously-included files found matching '.gitreview'warning: no 
previously-included files matching '*.pyc' found anywhere in 
distributionreading manifest template 'MANIFEST.in'warning: no 
previously-included files matching '*' found under directory 
'doc/build'warning: no previously-included files matching '*~' found anywhere 
in distributionwarning: no previously-included files matching '*.pyc' found 
anywhere in distributionwarning: no previously-included files matching 
'.gitignore' found anywhere in distributionwriting manifest file 
'ryu.egg-info/SOURCES.txt'running install_librunning install_datarunning 
install_egg_inforemoving 
'/usr/local/lib/python2.7/dist-packages/ryu-4.26-py2.7.egg-info' (and 
everything under it)Copying ryu.egg-info to 
/usr/local/lib/python2.7/dist-packages/ryu-4.26-py2.7.egg-inforunning 
install_scriptsInstalling ryu-manager script to /usr/local/binInstalling ryu 
script to /usr/local/bin

    On Wednesday, August 1, 2018, 6:35:53 AM GMT+1, IWAMOTO Toshihiro 
<iwam...@valinux.co.jp> wrote:  
 
 It seems tests weren't correctly run because of interactions between
travis CI env and tox venv.  Also, run the scenario test on more
recent python3, as python3.4 is going away.
The test uses a lot of memory and fails with pypy, so it's disabled for now.

Signed-off-by: IWAMOTO Toshihiro <iwam...@valinux.co.jp>
---
 .travis.yml | 37 +++++++++++++++++++++++++++----------
 tox.ini    |  4 ++--
 2 files changed, 29 insertions(+), 12 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index c6ef2609..4f67934d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,31 @@
 language: python
-python:
-  - "3.5"  # Python 3.5 still needs to be installed on Travis-CI
-
-env:
-  - TOX_ENV=py27
-  - TOX_ENV=py34
-  - TOX_ENV=py35
-  - TOX_ENV=pypy26
-  - TOX_ENV=pycodestyle
-  - TOX_ENV=autopep8
+
+matrix:
+  include:
+    - python: 3.6
+      env: TOX_ENV=pycodestyle
+    - python: 3.6
+      env: TOX_ENV=py36
+    - python: 3.6
+      env: TOX_ENV=autopep8
+
+    - python: 2.7
+      env: TOX_ENV=pycodestyle
+    - python: 2.7
+      env: TOX_ENV=py27
+
+    - python: 3.4
+      env: TOX_ENV=py34
+
+    - python: 3.5
+      env: TOX_ENV=py35
+
+    - python: 3.7-dev
+      env: TOX_ENV=py37
+
+# This is disabled because of trouble running on travis CI.
+#    - python: pypy
+#      env: TOX_ENV=pypy
 
 services:
  - docker
diff --git a/tox.ini b/tox.ini
index c1759acb..65136233 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py27,py34,py35,pypy26,pycodestyle,autopep8
+envlist = py27,py34,py35,py36,py37,pypy,pycodestyle,autopep8
 
 [testenv]
 deps =
@@ -25,7 +25,7 @@ commands =
  {[testenv]commands}
  {[testenv:scenario]commands}
 
-[testenv:py34]
+[testenv:py36]
 commands =
  {[testenv]commands}
  {[testenv:scenario]commands}
-- 
2.11.0


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel
  
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to