-
Notifications
You must be signed in to change notification settings - Fork 30
Description
After run
$ sudo python setup.py install
I try:
$ sudo make
And got this Error:
============================= test session starts ==============================
platform linux -- Python 3.5.0, pytest-2.8.2, py-1.4.30, pluggy-0.3.1
rootdir: /home/edu/lib/cymunk, inifile:
collected 2 items / 1 errorstests/test_vec2d.py ..
==================================== ERRORS ====================================
_____________________ ERROR collecting tests/test_space.py _____________________
/usr/lib/python3.5/site-packages/_pytest/python.py:591: in _importtestmodule
mod = self.fspath.pyimport(ensuresyspath=importmode)
/usr/lib/python3.5/site-packages/py/_path/local.py:650: in pyimport
import(modname)
E File "/home/edu/lib/cymunk/tests/test_space.py", line 23
E assert(space.collision_persistence == 3L)
E ^
E SyntaxError: invalid syntax
====================== 2 passed, 1 error in 0.13 seconds =======================
Makefile:6: recipe for target 'tests' failed
make: *** [tests] Error 1
The ' ^ ' was pointing to 3L
Anyone knows why i got this error?
Thank you.